Skip to content

Commit 0d98e11

Browse files
committed
wip
1 parent bcadb4e commit 0d98e11

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/build-all.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,17 @@ on:
99

1010
jobs:
1111
build-tarballs:
12-
runs-on: ubuntu-24.04
13-
1412
strategy:
1513
matrix:
16-
target: [ x86_64, aarch64, arm, riscv64, ppc64le, s390x ]
14+
include:
15+
- { os: ubuntu-24.04, target: x86_64 }
16+
- { os: ubuntu-24.04-arm, target: aarch64 }
17+
- { os: ubuntu-24.04, target: arm }
18+
- { os: ubuntu-24.04, target: riscv64 }
19+
- { os: ubuntu-24.04, target: ppc64le }
20+
- { os: ubuntu-24.04, target: s390x }
21+
22+
runs-on: ${{ matrix.os }}
1723

1824
permissions:
1925
contents: read
@@ -23,6 +29,9 @@ jobs:
2329
- name: Checkout Repository
2430
uses: actions/checkout@v4
2531

32+
- name: Install Podman
33+
run: sudo apt-get update && sudo apt-get install -y podman
34+
2635
- name: Login to GitHub Container Registry
2736
uses: redhat-actions/podman-login@v1
2837
with:

0 commit comments

Comments
 (0)