aboutsummaryrefslogtreecommitdiff
path: root/ci
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 /ci
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>
Diffstat (limited to 'ci')
-rwxr-xr-xci/lib.sh2
1 files changed, 1 insertions, 1 deletions
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)
;;