diff options
author | Stan Hu <stanhu@gmail.com> | 2018-05-29 10:17:01 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2018-05-29 10:18:47 -0700 |
commit | 5f783e2540f02254f04d004d1d3adc9d6b1c4ba6 (patch) | |
tree | 827988e74f184bfba50128f2407572abad831835 /.gitlab-ci.yml | |
parent | 4c74936f4567ba142bcd9ca31c8f5f10c8aa52fa (diff) | |
download | gitlab-ce-5f783e2540f02254f04d004d1d3adc9d6b1c4ba6.tar.gz |
Upgrade cache key to be clear that Debian Stretch is being used
This fixes build errors caused by a stale cache since the new Docker image
upgraded from Debian Jessie to Stretch, which shipped an updated version
of OpenSSL.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ef263a3f106..0b2ee4b1cd8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ image: "dev.gitlab.org:5005/gitlab/gitlab-build-images:ruby-2.3.7-golang-1.9-git - gitlab-org .default-cache: &default-cache - key: "ruby-2.3.7-with-yarn" + key: "ruby-2.3.7-debian-stretch-with-yarn" paths: - vendor/ruby - .yarn-cache/ @@ -550,7 +550,7 @@ static-analysis: script: - scripts/static-analysis cache: - key: "ruby-2.3.7-with-yarn-and-rubocop" + key: "ruby-2.3.7-debian-stretch-with-yarn-and-rubocop" paths: - vendor/ruby - .yarn-cache/ |