ci: expose distro name in dockerized GitHub jobs

Expose a distro name in dockerized jobs. This will be used in a
subsequent commit where we merge the installation scripts for dockerized
and non-dockerized jobs.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Patrick Steinhardt 2024-04-12 06:44:02 +02:00 committed by Junio C Hamano
parent 2d65e5b6a6
commit ab2b3aadf3
1 changed files with 4 additions and 0 deletions

View File

@ -342,12 +342,16 @@ jobs:
vector: vector:
- jobname: linux-musl - jobname: linux-musl
image: alpine image: alpine
distro: alpine-latest
- jobname: linux32 - jobname: linux32
image: daald/ubuntu32:xenial image: daald/ubuntu32:xenial
distro: ubuntu32-16.04
- jobname: pedantic - jobname: pedantic
image: fedora image: fedora
distro: fedora-latest
env: env:
jobname: ${{matrix.vector.jobname}} jobname: ${{matrix.vector.jobname}}
distro: ${{matrix.vector.distro}}
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ${{matrix.vector.image}} container: ${{matrix.vector.image}}
steps: steps: