Skip to content

Commit 8714f72

Browse files
authored
Merge pull request #10368 from Icinga/GHAdeb32
GitHub actions: also test the still packaged 32-bit Debian
2 parents e6ad219 + 7962121 commit 8714f72

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/linux.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313

1414
jobs:
1515
linux:
16-
name: ${{ matrix.distro }}
16+
name: ${{ matrix.distro }}${{ matrix.platform != 'linux/amd64' && format(' ({0})', matrix.platform) || '' }}
1717
runs-on: ubuntu-latest
1818

1919
strategy:
@@ -49,6 +49,15 @@ jobs:
4949
- ubuntu:24.04
5050
- ubuntu:24.10
5151

52+
platform:
53+
- linux/amd64
54+
55+
include:
56+
- distro: debian:11
57+
platform: linux/386
58+
- distro: debian:12
59+
platform: linux/386
60+
5261
steps:
5362
- name: Checkout HEAD
5463
uses: actions/checkout@v3
@@ -62,4 +71,4 @@ jobs:
6271
- name: Build
6372
run: >-
6473
docker run --rm -v "$(pwd):/icinga2" -e DISTRO=${{ matrix.distro }}
65-
${{ matrix.distro }} /icinga2/.github/workflows/linux.bash
74+
--platform ${{ matrix.platform }} ${{ matrix.distro }} /icinga2/.github/workflows/linux.bash

0 commit comments

Comments
 (0)