From f8534b477c245b2bb10187b2b2d2eff06234f6a6 Mon Sep 17 00:00:00 2001 From: Michael Scherle Date: Wed, 20 Nov 2024 10:20:35 +0100 Subject: [PATCH] ci: Fix debian32 job Gitlab runner fails to pull the image due to: no matching manifest for linux/amd64 in the manifest list entries. Set the architecture of the image to pull, see: https://docs.gitlab.com/ee/ci/yaml/#imagedocker Signed-off-by: Michael Scherle --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 37371f77..e7572d90 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -136,7 +136,10 @@ makecheck-debian32: python3-six python3-pyparsing liborc-0.4-dev meson git g++ autoconf-archive - *protocol - image: i386/debian:latest + image: + name: i386/debian:latest + docker: + platform: i386 script: - git clean -fdx - git submodule foreach --recursive git clean -fdx