Skip to content
Snippets Groups Projects
Commit c205bb40 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

make deep_clean a separate manual step

parent e891f55a
No related branches found
No related tags found
1 merge request!394feat: docker system prune at cleanup
...@@ -513,7 +513,7 @@ benchmarks:physics: ...@@ -513,7 +513,7 @@ benchmarks:physics:
strategy: depend strategy: depend
allow_failure: false allow_failure: false
cleanup: clean:
stage: finalize stage: finalize
dependencies: dependencies:
- version - version
...@@ -528,6 +528,14 @@ cleanup: ...@@ -528,6 +528,14 @@ cleanup:
if [ "$CI_PIPELINE_SOURCE" == "merge_request_event" ]; then if [ "$CI_PIPELINE_SOURCE" == "merge_request_event" ]; then
./gitlab-ci/cleanup_registry.sh -i jug_xl -r 69 ${NIGHTLY_TAG} ./gitlab-ci/cleanup_registry.sh -i jug_xl -r 69 ${NIGHTLY_TAG}
fi fi
- docker system df
- docker images
deep_clean:
stage: finalize
dependencies: clean
when: manual
script:
- docker system prune --force - docker system prune --force
- docker system df - docker system df
- docker images - docker images
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment