Merge pull request #10368 from Icinga/GHAdeb32

GitHub actions: also test the still packaged 32-bit Debian
This commit is contained in:
Yonas Habteab 2025-03-12 16:03:39 +01:00 committed by GitHub
commit 8714f72d65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,7 +13,7 @@ concurrency:
jobs:
linux:
name: ${{ matrix.distro }}
name: ${{ matrix.distro }}${{ matrix.platform != 'linux/amd64' && format(' ({0})', matrix.platform) || '' }}
runs-on: ubuntu-latest
strategy:
@ -49,6 +49,15 @@ jobs:
- ubuntu:24.04
- ubuntu:24.10
platform:
- linux/amd64
include:
- distro: debian:11
platform: linux/386
- distro: debian:12
platform: linux/386
steps:
- name: Checkout HEAD
uses: actions/checkout@v3
@ -62,4 +71,4 @@ jobs:
- name: Build
run: >-
docker run --rm -v "$(pwd):/icinga2" -e DISTRO=${{ matrix.distro }}
${{ matrix.distro }} /icinga2/.github/workflows/linux.bash
--platform ${{ matrix.platform }} ${{ matrix.distro }} /icinga2/.github/workflows/linux.bash