Skip to content

Commit 84785f6

Browse files
committed
update the workflows to test the artifacts and docker images on arm64 runners
1 parent f0b195f commit 84785f6

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/_docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@ jobs:
4949
-
5050
name: Setup QEMU
5151
uses: docker/setup-qemu-action@v3
52+
if: inputs.runner != 'ubuntu-latest-arm64'
5253
-
5354
name: Setup Docker Buildx
5455
uses: docker/setup-buildx-action@v3
56+
if: inputs.runner != 'ubuntu-latest-arm64'
5557
with:
5658
version: 'latest'
5759
driver-opts: 'image=moby/buildkit:buildx-stable-1'

.github/workflows/_docker_manifests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ jobs:
3737
-
3838
name: Setup QEMU
3939
uses: docker/setup-qemu-action@v3
40+
if: inputs.runner != 'ubuntu-latest-arm64'
4041
-
4142
name: Setup Docker Buildx
4243
uses: docker/setup-buildx-action@v3
44+
if: inputs.runner != 'ubuntu-latest-arm64'
4345
with:
4446
version: 'latest'
4547
driver-opts: 'image=moby/buildkit:buildx-stable-1'

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- arch: amd64
7373
runner: ubuntu-24.04
7474
- arch: arm64
75-
runner: ubuntu-24.04
75+
runner: ubuntu-latest-arm
7676
uses: ./.github/workflows/_artifacts_linux.yml
7777
with:
7878
runner: ${{ matrix.runner }}
@@ -90,7 +90,7 @@ jobs:
9090
- arch: amd64
9191
runner: ubuntu-24.04
9292
- arch: arm64
93-
runner: ubuntu-24.04
93+
runner: ubuntu-latest-arm
9494

9595
uses: ./.github/workflows/_docker.yml
9696
with:

0 commit comments

Comments
 (0)