Skip to content
Draft
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ workflow:

nvidia-smi:
stage: config
needs: []
image: nvidia/cuda:${CUDA_VERSION}-base-${CUDA_OS}
tags:
- gpu
Expand All @@ -116,6 +117,7 @@ nvidia-smi:
## - export tag to public registries, optional secondary export tag
version:
stage: config
needs: []
script:
- |
if [ -n "${VERSION}" ]; then
Expand Down Expand Up @@ -188,6 +190,7 @@ version:

status:pending:
stage: status-pending
needs: []
extends: .status
variables:
STATE: "pending"
Expand Down Expand Up @@ -747,6 +750,7 @@ df:
.prune:
extends: .build
stage: config
needs: []
rules:
- when: manual
script:
Expand All @@ -771,6 +775,7 @@ prune:docker-new:
clean_internal_tag:
image: alpine/curl
stage: finalize
needs: []
rules:
- when: manual
script:
Expand All @@ -785,6 +790,7 @@ clean_internal_tag:
.clean_unstable_mr:
extends: .docker
stage: finalize
needs: []
when: always
script:
- apk add curl jq
Expand Down Expand Up @@ -881,6 +887,7 @@ clean_pipeline:docker-new:
spack-cache-cleanup:
Comment on lines 900 to 905
extends: .build
stage: finalize
needs: [version]
when: always
allow_failure: true
script:
Expand All @@ -892,7 +899,7 @@ spack-cache-cleanup:

status:success:
stage: status-report
dependencies: []
needs: []
extends: .status
variables:
STATE: "success"
Comment on lines 916 to 938
Expand All @@ -901,7 +908,7 @@ status:success:

status:failure:
stage: status-report
dependencies: []
needs: []
extends: .status
variables:
STATE: "failure"
Expand Down
Loading