From 6b635337bed729a04a10d576a49040ccbdb25604 Mon Sep 17 00:00:00 2001 From: Cesar Strauss Date: Mon, 13 Sep 2021 06:22:43 -0300 Subject: [PATCH] Save Gitlab runner cache, even on a failed test Since our tests currently fail, the cache was never saved, not even once. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f453e172..b0548075 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,6 +5,7 @@ cache: - ccache - .cache/pip - apt-cache + when: 'always' variables: PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" -- 2.30.2