Skip to content

Commit fcfd548

Browse files
committed
Use native ARM runners
1 parent 7b83b72 commit fcfd548

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,27 @@ jobs:
1010
include:
1111
- RELEASE: latest
1212
ARCH: x86_64
13+
RUNS_ON: ubuntu-24.04
1314
- RELEASE: latest
1415
ARCH: armhf
16+
RUNS_ON: ubuntu-24.04-arm
1517
- RELEASE: latest
1618
ARCH: aarch64
19+
RUNS_ON: ubuntu-24.04-arm
1720

1821
# special builds
1922
- RELEASE: latest
2023
ARCH: x86_64
2124
BUILD_TYPE: coverage
25+
RUNS_ON: ubuntu-24.04
2226
- RELEASE: latest
2327
ARCH: x86_64
2428
BUILD_TYPE: shared-only
2529
LIBAPPIMAGE_SHARED_ONLY: 1
30+
RUNS_ON: ubuntu-24.04
2631

2732
name: ${{ matrix.BUILD_TYPE }} ${{ matrix.DIST }} ${{ matrix.ARCH }} shared-only=${{ matrix.LIBAPPIMAGE_SHARED_ONLY }}
28-
runs-on: ubuntu-latest
33+
runs-on: ${{ matrix.RUNS_ON }}
2934
env:
3035
ARCH: ${{ matrix.ARCH }}
3136
RELEASE: ${{ matrix.RELEASE }}
@@ -35,8 +40,6 @@ jobs:
3540
- uses: actions/checkout@v2
3641
with:
3742
submodules: recursive
38-
- name: Set up QEMU integration for Docker
39-
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
4043
- name: Build libappimage and run tests
4144
run: bash -ex ci/build-in-docker.sh
4245
env:

0 commit comments

Comments
 (0)