We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e6ad219 + 7962121 commit 8714f72Copy full SHA for 8714f72
.github/workflows/linux.yml
@@ -13,7 +13,7 @@ concurrency:
13
14
jobs:
15
linux:
16
- name: ${{ matrix.distro }}
+ name: ${{ matrix.distro }}${{ matrix.platform != 'linux/amd64' && format(' ({0})', matrix.platform) || '' }}
17
runs-on: ubuntu-latest
18
19
strategy:
@@ -49,6 +49,15 @@ jobs:
49
- ubuntu:24.04
50
- ubuntu:24.10
51
52
+ platform:
53
+ - linux/amd64
54
+
55
+ include:
56
+ - distro: debian:11
57
+ platform: linux/386
58
+ - distro: debian:12
59
60
61
steps:
62
- name: Checkout HEAD
63
uses: actions/checkout@v3
@@ -62,4 +71,4 @@ jobs:
71
- name: Build
72
run: >-
64
73
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