diff options
author | kwryankrattiger <80296582+kwryankrattiger@users.noreply.github.com> | 2023-12-23 05:04:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-23 12:04:28 +0100 |
commit | 5a714a79eaf9c1ff66e9291f4c74e24d8504d176 (patch) | |
tree | 397f9b9cc9510981ee91a0a60e64ebca87ff4af6 /lib | |
parent | 7cb873fb871010f58b9a86cf496be9874ac18029 (diff) | |
download | spack-5a714a79eaf9c1ff66e9291f4c74e24d8504d176.tar.gz spack-5a714a79eaf9c1ff66e9291f4c74e24d8504d176.tar.bz2 spack-5a714a79eaf9c1ff66e9291f4c74e24d8504d176.tar.xz spack-5a714a79eaf9c1ff66e9291f4c74e24d8504d176.zip |
CI: Disable downloading artifacts from upstream jobs (#41846)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/ci.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/spack/spack/ci.py b/lib/spack/spack/ci.py index ac30804574..170dd1ec45 100644 --- a/lib/spack/spack/ci.py +++ b/lib/spack/spack/ci.py @@ -1253,6 +1253,7 @@ def generate_gitlab_ci_yaml( op=lambda cmd: cmd.replace("mirror_prefix", temp_storage_url_prefix), ) + cleanup_job["dependencies"] = [] output_object["cleanup"] = cleanup_job if ( @@ -1276,6 +1277,7 @@ def generate_gitlab_ci_yaml( if buildcache_destination else remote_mirror_override or remote_mirror_url ) + signing_job["dependencies"] = [] output_object["sign-pkgs"] = signing_job @@ -1296,6 +1298,7 @@ def generate_gitlab_ci_yaml( final_job["when"] = "always" final_job["retry"] = service_job_retries final_job["interruptible"] = True + final_job["dependencies"] = [] output_object["rebuild-index"] = final_job |