From 31f14a5e8fd89463acd6f565e85dbfd5b4f552c2 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Wed, 26 Jun 2024 16:33:41 -0500 Subject: [PATCH] Start downloads right away There is no need to wait until after validation and linting is done before beginning the download caching, and it definitely does not need its own portion of the cycle. Move it to the beginning of the generate phase, so it gets started up right away. --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fda6189..58ad4c3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,6 @@ stages: - generate - lint - - cache - trigger variables: @@ -61,7 +60,7 @@ shellcheck: # others were disappearing (e.g. daily builds for Rawhide) before we # could get to them downloads: - stage: cache + stage: generate retry: 2 tags: - nix