aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2025-01-10 12:32:03 +0100
committerJunio C Hamano <gitster@pobox.com>2025-01-10 09:15:38 -0800
commit4ad71b16cdc8f5f367931b908fa904e8e8c48b47 (patch)
tree1bf0f512f75fb0464706df2cf869f7ea1fe5a7fb
parent5aea4ff36c58bd3c6d6c0852e6b3469261348e0d (diff)
downloadgit-4ad71b16cdc8f5f367931b908fa904e8e8c48b47.tar.xz
gitlab-ci: add linux32 job testing against i386
Add another job to GitLab CI that tests against the i386 architecture. This job is equivalent to the same job in GitHub Workflows. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--.gitlab-ci.yml2
-rwxr-xr-xci/lib.sh2
2 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 00bc727865..29e9056dd5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -66,6 +66,8 @@ test:linux:
image: fedora:latest
- jobname: linux-musl
image: alpine:latest
+ - jobname: linux32
+ image: i386/ubuntu:20.04
- jobname: linux-meson
image: ubuntu:latest
CC: gcc
diff --git a/ci/lib.sh b/ci/lib.sh
index f8b68ab8a6..2293849ada 100755
--- a/ci/lib.sh
+++ b/ci/lib.sh
@@ -269,7 +269,7 @@ then
CI_OS_NAME=osx
JOBS=$(nproc)
;;
- *,alpine:*|*,fedora:*|*,ubuntu:*)
+ *,alpine:*|*,fedora:*|*,ubuntu:*|*,i386/ubuntu:*)
CI_OS_NAME=linux
JOBS=$(nproc)
;;