Skip to content

Commit a89027d

Browse files
pks-tgitster
authored andcommitted
gitlab-ci: backfill missing Linux jobs
We're missing two Linux CI jobs in GitLab's CI that are present in GitHub's CI. Backfill them to ensure that GitLab has the same test coverage. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 48f5271 commit a89027d

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.gitlab-ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ test:linux:
6767
image: alpine:latest
6868
- jobname: linux32
6969
image: i386/ubuntu:20.04
70+
# A RHEL 8 compatible distro. Supported until 2029-05-31.
71+
- jobname: almalinux-8
72+
image: almalinux:8
73+
# Supported until 2026-08-31.
74+
- jobname: debian-11
75+
image: debian:11
7076
artifacts:
7177
paths:
7278
- t/failed-test-artifacts

ci/lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ then
250250
CI_OS_NAME=osx
251251
JOBS=$(nproc)
252252
;;
253-
*,alpine:*|*,fedora:*|*,ubuntu:*|*,i386/ubuntu:*)
253+
*,almalinux:*|*,alpine:*|*,debian:*|*,fedora:*|*,ubuntu:*|*,i386/ubuntu:*)
254254
CI_OS_NAME=linux
255255
JOBS=$(nproc)
256256
;;

0 commit comments

Comments
 (0)