diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2021-11-23 17:29:10 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-11-23 16:51:53 -0800 |
commit | c08bb260105fc7307be65f30e65c0f7305f0e3ce (patch) | |
tree | 5324d5e9d179b4e4fc6b5a1b29280b0990c137d8 /ci | |
parent | CI: use shorter names that fit in UX tooltips (diff) | |
download | tgif-c08bb260105fc7307be65f30e65c0f7305f0e3ce.tar.xz |
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 88dedd5e72c (Travis: also
test on 32-bit Linux, 2017-03-05).
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/install-docker-dependencies.sh | 2 | ||||
-rwxr-xr-x | ci/lib.sh | 2 | ||||
-rwxr-xr-x | ci/run-docker-build.sh | 2 | ||||
-rwxr-xr-x | ci/run-docker.sh | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/ci/install-docker-dependencies.sh b/ci/install-docker-dependencies.sh index 07a8c6b199..78b7e326da 100755 --- a/ci/install-docker-dependencies.sh +++ b/ci/install-docker-dependencies.sh @@ -4,7 +4,7 @@ # case "$jobname" in -Linux32) +linux32) linux32 --32bit i386 sh -c ' apt update >/dev/null && apt install -y build-essential libcurl4-openssl-dev \ @@ -191,7 +191,7 @@ osx-clang|osx-gcc) ;; linux-gcc-default) ;; -Linux32) +linux32) CC=gcc ;; linux-musl) diff --git a/ci/run-docker-build.sh b/ci/run-docker-build.sh index 5d2764ad3a..6cd832efb9 100755 --- a/ci/run-docker-build.sh +++ b/ci/run-docker-build.sh @@ -15,7 +15,7 @@ then fi case "$jobname" in -Linux32) +linux32) switch_cmd="linux32 --32bit i386" ;; linux-musl) diff --git a/ci/run-docker.sh b/ci/run-docker.sh index b610dd4db8..af89d1624a 100755 --- a/ci/run-docker.sh +++ b/ci/run-docker.sh @@ -6,7 +6,7 @@ . ${0%/*}/lib.sh case "$jobname" in -Linux32) +linux32) CI_CONTAINER="daald/ubuntu32:xenial" ;; linux-musl) |