summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorScott Wittenburg <scott.wittenburg@kitware.com>2021-02-23 19:19:06 -0700
committerGitHub <noreply@github.com>2021-02-23 19:19:06 -0700
commitee5992783cbd9d9aecb47dbc6a0fc85b882ad02a (patch)
tree2a435e5c045a45a0d69e8a25137e0837975eb217 /lib
parenta7ddaa67de87c8271f9d8da9741d059604268500 (diff)
downloadspack-ee5992783cbd9d9aecb47dbc6a0fc85b882ad02a.tar.gz
spack-ee5992783cbd9d9aecb47dbc6a0fc85b882ad02a.tar.bz2
spack-ee5992783cbd9d9aecb47dbc6a0fc85b882ad02a.tar.xz
spack-ee5992783cbd9d9aecb47dbc6a0fc85b882ad02a.zip
Gitlab fix pr workflow (#21786)
Fixes for gitlab pipelines * Remove accidentally retained testing branch name * Generate pipeline w/out debug mode * Make jobs interruptible for auto-cancel pending * Work around concretization conflicts
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/ci.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/spack/spack/ci.py b/lib/spack/spack/ci.py
index e853dc9f98..b0e0b25191 100644
--- a/lib/spack/spack/ci.py
+++ b/lib/spack/spack/ci.py
@@ -866,7 +866,8 @@ def generate_gitlab_ci_yaml(env, print_summary, output_file, prune_dag=False,
'retry': {
'max': 2,
'when': JOB_RETRY_CONDITIONS,
- }
+ },
+ 'interruptible': True
}
length_needs = len(job_dependencies)