From 11a09a1adcb8b25e98de7dbd5a3053dc95a0fd1c Mon Sep 17 00:00:00 2001 From: Guilhem Bonnefille <guilhem.bonnefille@c-s.fr> Date: Mon, 4 Mar 2019 18:33:05 +0100 Subject: [PATCH] Factorize more registry's path --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2eedd90a5b..24a84a3231 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ variables: - BUILD_REGISTRY: $CI_REGISTRY/gbonnefille + BUILD_IMAGE_REGISTRY: $CI_REGISTRY/gbonnefille/otb-build-env DOCKER_DRIVER: overlay2 GIT_DEPTH: "3" @@ -17,13 +17,13 @@ stages: native-build: extends: .general stage: build - image: $BUILD_REGISTRY/otb-build-env/otb-ubuntu-native:18.04 + image: $BUILD_IMAGE_REGISTRY/otb-ubuntu-native:18.04 script: - ctest -VV -S CI/main_ci.cmake -DIMAGE_NAME:string=ubuntu-18.04-gcc shark-build: extends: .general stage: build - image: $BUILD_REGISTRY/otb-build-env/otb-ubuntu-shark:18.04 + image: $BUILD_IMAGE_REGISTRY/otb-ubuntu-shark:18.04 script: - ctest -VV -S CI/main_ci.cmake -DIMAGE_NAME:string=ubuntu-18.04-gcc-shark-3.1.4 -- GitLab