From f8474cf48223cc7d1adad9f4b755996d1d355e39 Mon Sep 17 00:00:00 2001 From: John Smith Date: Mon, 29 Nov 2021 15:41:42 -0500 Subject: [PATCH] switch to build docker image --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 11e55c87..de2bf46d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,6 @@ variables: GIT_SUBMODULE_STRATEGY: recursive + BUILD_IMAGE_LINUX_AMD64: $CI_REGISTRY/veilid/ci-cd/veilid-build-linux-amd64:latest stages: - clippy @@ -8,7 +9,7 @@ stages: ############# Clippy Lint clippy: stage: clippy - image: rust:latest + image: ${BUILD_IMAGE_LINUX_AMD64} tags: - linux - amd64 @@ -21,7 +22,7 @@ clippy: ############# Unit Testing test_linux_amd64: stage: test - image: rust:latest + image: ${BUILD_IMAGE_LINUX_AMD64} tags: - linux - amd64