Jacamar CI v0.14.0
Release: v0.14.0
Date: 2/16/2023
Admin Changes
Option to allow LSF job termination via
bkill(!417, !420) - (Thanks@VarunKoyyalagunta)[batch] lsf_job_cancellation = true
Enabling
lsf_job_cancellationallows the LSF executor to use thebkillapplication to signal a running job it’s time to stop. It also enforces that-Jwill be an illegal argument and as such may break existing jobs if they have previously relied upon setting this in theirSCHEDULER_PARAMETER.
Added a newline to the signal help text for
jacamarapplication (!405) - (Thanks@tiggi)Improved message handling for RunAs validation (!421)
Expanded the RunAs JSON override to allow for admin defined
user_messageanderror_messagestrings. If present these new details will be handled accordingly.
Feature flag to allow expanded testing for limited build directories (!378)
Important
This feature is still subject to modification and should be reserved to extended periods of testing/review. At this time as we have not gathered sufficient feedback at scale to remove the feature flag.
[general] # Allow for a limited structure on the builds_dir by enforcing a user driven # process to automatically obtain concurrent directories by requesting file locks. ff_limit_build_dir = true # Indicates how many concurrent build directory can be left on the system. Past # this directories will be removed during cleanup (default: 0, unlimited). max_build_dir = 10
When enabled the base of the builds directory will follow a modified structure:
/<data_dir>/<username>/builds/<projectName>_<projectID>. This attempts to limit the complexity when multiple runners all share the same network file system by removing the runner’s short token from the path.
Bug & Development Fixes
Limit simultaneous runs on scheduler tests (!422)
Minor code quality corrections (!418)
Establish static directory cleanup limit (!424)
The new
static_cleanup_limitconfiguration for the static directory feature limits the number of folders that can be removed during cleanup at any given time. This is meant to avoid situations where a single job becomes delayed for an extended period of time removing multiple expired directories. The new default for this setting is1.[general] static_cleanup_limit = 1