From b4e75f4c3e25eecf5c09efd7703bef3c8f740f00 Mon Sep 17 00:00:00 2001 From: Calvin Katt Date: Tue, 14 May 2024 17:59:10 +0200 Subject: [PATCH] Updated CI packaging stage to use a different runner tag per job to allow choosing of different runners for different architectures (e.g. RPi5 for arm64) Signed-off-by: Calvin Katt --- .gitlab-ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 30a0981e0..ca73844c0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -175,7 +175,7 @@ pkg:docker: --tag ${DOCKER_IMAGE}:${DOCKER_TAG}-${ARCH} . - docker push ${DOCKER_IMAGE}:${DOCKER_TAG}-${ARCH} tags: - - docker + - $TAG variables: TARGET: app parallel: @@ -184,6 +184,12 @@ pkg:docker: PLATFORM: linux/amd64 ARCH: x86_64 TRIPLET: x86_64-linux-gnu + TAG: docker + - DISTRO: debian + PLATFORM: linux/arm64/v8 + ARCH: arm64 + TRIPLET: aarch64-linux-gnu + TAG: PI5 # - DISTRO: debian # PLATFORM: linux/arm/v7 # ARCH: armhf