Skip to content

Commit c08bb26

Browse files
avargitster
authored andcommitted
CI: rename the "Linux32" job to lower-case "linux32"
As a follow-up to the preceding commit's shortening of CI job names, rename the only job that starts with an upper-case letter to be consistent with the rest. It was added in 88dedd5 (Travis: also test on 32-bit Linux, 2017-03-05). Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent df7375d commit c08bb26

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,8 @@ jobs:
266266
vector:
267267
- jobname: linux-musl
268268
image: alpine
269-
- jobname: Linux32
269+
- jobname: linux32
270+
os: ubuntu32
270271
image: daald/ubuntu32:xenial
271272
- jobname: pedantic
272273
image: fedora

ci/install-docker-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55

66
case "$jobname" in
7-
Linux32)
7+
linux32)
88
linux32 --32bit i386 sh -c '
99
apt update >/dev/null &&
1010
apt install -y build-essential libcurl4-openssl-dev \

ci/lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ osx-clang|osx-gcc)
191191
;;
192192
linux-gcc-default)
193193
;;
194-
Linux32)
194+
linux32)
195195
CC=gcc
196196
;;
197197
linux-musl)

ci/run-docker-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ then
1515
fi
1616

1717
case "$jobname" in
18-
Linux32)
18+
linux32)
1919
switch_cmd="linux32 --32bit i386"
2020
;;
2121
linux-musl)

ci/run-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
. ${0%/*}/lib.sh
77

88
case "$jobname" in
9-
Linux32)
9+
linux32)
1010
CI_CONTAINER="daald/ubuntu32:xenial"
1111
;;
1212
linux-musl)

0 commit comments

Comments
 (0)