diff options
author | Hiago De Franco <hiago.franco@toradex.com> | 2025-06-20 10:32:15 -0300 |
---|---|---|
committer | Hiago De Franco <hiago.franco@toradex.com> | 2025-06-26 10:22:10 -0300 |
commit | c0b8966a5a4d2ecf02b0643ce9d9533c69a044a9 (patch) | |
tree | 37e3af70d44a5ff94f7ac9d9b25cd41ed3e32b85 | |
parent | 655f7a3779bb0662d205639c870ff5c565c6f725 (diff) |
gitlab-ci: use CI_GITLAB_REGISTRY_BASE
Instead of hardcoding the URL, let's use the global defined variable
CI_GITLAB_REGISTRY_BASE, which will correctly point to the URL and will
change automatically when the migration of Gitlab is done.
Signed-off-by: Hiago De Franco <hiago.franco@toradex.com>
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b221582..e266339 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ variables: # uncomment for the pipeline debug purpose # CI_DEBUG_TRACE: "true" - CI_IMAGE: gitlab.int.toradex.com:4567/rd/linux-bsp/ci-toolchain-container:linux-toradex_aarch32_arm_builder-bb6f84e + CI_IMAGE: $CI_GITLAB_REGISTRY_BASE/rd/linux-bsp/ci-toolchain-container:linux-toradex_aarch32_arm_builder-bb6f84e DOCKER_HOST: tcp://docker:2375 DOCKER_DRIVER: overlay2 DOCKER_TLS_CERTDIR: "" |