From 80354ce85700e3e5af1567a22f0bd3e077c8bd02 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 30 Aug 2022 22:18:59 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 20ef2be..8120a54 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -46,6 +46,28 @@ build-extrastats: # This job runs in the build stage, which runs first. only: - extrastats +build-testing: # This job runs in the build stage, which runs first. + stage: build + tags: + - buildx + script: + - echo "Compiling the code..." + - cd docker-configs + - docker buildx build --no-cache -f Dockerfile-proxy -t gitlab.hacknix.net:5050/hacknix/freedmr:testing --platform linux/arm64 --push . + only: + - testing + +build-debug: # This job runs in the build stage, which runs first. + stage: build + tags: + - buildx + script: + - echo "Compiling the code..." + - cd docker-configs + - docker buildx build --no-cache -f Dockerfile-proxy -t gitlab.hacknix.net:5050/hacknix/freedmr:debug --platform linux/arm64 --push . + only: + - debug + build-release: # This job runs in the build stage, which runs first. stage: build tags: