From 25328e2ca463cbb8cd09b05c2e5b85571dd5d208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0pa=C4=8Dek?= Date: Fri, 11 Mar 2022 10:09:57 +0100 Subject: [PATCH] Shorten artifact retention for docs:tarball job to one day We now run both docs and docs:tarball jobs at the same time and keeping artifacts for longer period of time is a waste. Artifacts for docs job has to be kept for long period of time because they are used by scripts behind bind.isc.org web site. (cherry picked from commit b0f6fc7f2fbe76f7a496054344eb47c06237851e) --- .gitlab-ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8539b2e70f..96c6db7f6a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -394,9 +394,6 @@ stages: - make -j${BUILD_PARALLEL_JOBS:-1} -k doc V=1 - qpdf --check doc/arm/_build/latex/Bv9ARM.pdf - find doc/man/ -maxdepth 1 -name "*.[0-9]" -exec mandoc -T lint "{}" \; | ( ! grep -v -e "skipping paragraph macro. sp after" -e "unknown font, skipping request. ft C" ) - artifacts: - untracked: true - expire_in: "1 month" ### Job Definitions @@ -517,6 +514,7 @@ tarball-create: artifacts: true # Jobs for doc builds on Debian 11 "bullseye" (amd64) +# Long "docs" job artifact retention is needed for bind.isc.org web site docs: <<: *release_branch_triggering_rules @@ -527,6 +525,9 @@ docs: needs: - job: autoreconf artifacts: true + artifacts: + untracked: true + expire_in: "1 month" docs:tarball: <<: *default_triggering_rules