From c77f68e099b9792bf5e33ff1883b8304c7ec2785 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= Date: Mon, 26 Nov 2018 10:34:44 +0100 Subject: Override CI_COMMIT_REF_SLUG for QA branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `gitlab:assets:compile` job isn't run for the QA branches, thus there's no Docker image correspinding these branches in the registry. By overriding `CI_COMMIT_REF_SLUG` to `master`, the `fetch-assets` job in the `omnibus-gitlab` pipeline will pull the `master` assets Docker image. Signed-off-by: Rémy Coutable --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c6cf7475afa..d78671c3214 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -254,7 +254,7 @@ package-and-qa: retry: 0 script: - gem install gitlab --no-document - - ./$SCRIPT_NAME omnibus + - CI_COMMIT_REF_SLUG=master ./$SCRIPT_NAME omnibus when: manual only: - //@gitlab-org/gitlab-ce -- cgit v1.2.1