From efe3708609725bc2c0fc56ce14638640d74b9a4a Mon Sep 17 00:00:00 2001 From: Malte Meiboom Date: Tue, 9 Dec 2025 12:11:46 +0000 Subject: [PATCH] Update .gitlab-ci.yml file, switched image to the local builder --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c77f140..8b5b3b7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,13 +4,13 @@ stages: build-job: stage: build - image: rust:latest + image: localhost:5000/huskbuilder:latest script: - cargo build test-job: stage: test - image: rust:latest + image: localhost:5000/huskbuilder:latest script: - cargo test