From: Michel Dänzer Date: Tue, 26 Mar 2019 17:35:59 +0000 (+0100) Subject: gitlab-ci: Only pull/push cache contents in build+test stage jobs X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=a3f34f9d8501b4708e8b22eeee3665eee93edbf6 gitlab-ci: Only pull/push cache contents in build+test stage jobs The containers-build stage job doesn't use the cache, so this might save some wasted time for it. Reviewed-by: Eric Engestrom --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 449516ecab2..5e15f1e2f94 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,10 +20,6 @@ variables: UBUNTU_IMAGE: "$CI_REGISTRY_IMAGE/ubuntu:$UBUNTU_TAG" UBUNTU_IMAGE_MAIN: "registry.freedesktop.org/mesa/mesa/ubuntu:$UBUNTU_TAG" -cache: - paths: - - ccache - stages: - containers-build - build+test @@ -69,6 +65,9 @@ ubuntu: extends: .ci-run-policy image: $UBUNTU_IMAGE stage: build+test + cache: + paths: + - ccache artifacts: when: on_failure untracked: true