diff options
author | kwryankrattiger <80296582+kwryankrattiger@users.noreply.github.com> | 2024-10-03 06:59:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-03 11:59:27 +0000 |
commit | 482e2fbde88c1f0fe9c05fd066c9cd70054c7196 (patch) | |
tree | 40090b4c10d909cf3c9b64b5b3640d9f5be8d23e /share | |
parent | ad75e8fc95702df52ade8d5c29cf4ce2fbef25a2 (diff) | |
download | spack-482e2fbde88c1f0fe9c05fd066c9cd70054c7196.tar.gz spack-482e2fbde88c1f0fe9c05fd066c9cd70054c7196.tar.bz2 spack-482e2fbde88c1f0fe9c05fd066c9cd70054c7196.tar.xz spack-482e2fbde88c1f0fe9c05fd066c9cd70054c7196.zip |
Noop jobs should do less work (#46732)
Diffstat (limited to 'share')
-rw-r--r-- | share/spack/gitlab/cloud_pipelines/configs/ci.yaml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/share/spack/gitlab/cloud_pipelines/configs/ci.yaml b/share/spack/gitlab/cloud_pipelines/configs/ci.yaml index 722d7ef6cd..a3c562cae9 100644 --- a/share/spack/gitlab/cloud_pipelines/configs/ci.yaml +++ b/share/spack/gitlab/cloud_pipelines/configs/ci.yaml @@ -106,10 +106,14 @@ ci: - noop-job: tags: ["service"] + image: busybox:latest variables: + GIT_STRATEGY: "none" CI_JOB_SIZE: "small" KUBERNETES_CPU_REQUEST: "500m" KUBERNETES_MEMORY_REQUEST: "500M" + before_script:: [] + after_script:: [] - any-job: tags: ["spack"] |