Skip to content

Commit

Permalink
Build using native ARM runners
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAssassin committed Feb 15, 2025
1 parent 362e637 commit 98633fe
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,25 @@ jobs:
strategy:
fail-fast: false
matrix:
ARCH: [x86_64, i686, aarch64, armhf]
include:
- ARCH: x86_64
RUNS_ON: ubuntu-24.04
- ARCH: i686
RUNS_ON: ubuntu-24.04
- ARCH: aarch64
RUNS_ON: ubuntu-24.04-arm
- ARCH: armhf
RUNS_ON: ubuntu-24.04-arm

name: AppImage ${{ matrix.ARCH }}
runs-on: ubuntu-latest
runs-on: ${{ matrix.RUNS_ON }}
env:
ARCH: ${{ matrix.ARCH }}
DIST: bionic
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up QEMU integration for Docker
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Build AppImage in Docker
run: bash -ex ci/build-in-docker.sh
- name: Archive artifacts
Expand All @@ -35,7 +41,7 @@ jobs:
name: Create release and upload artifacts
needs:
- appimage-build
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
Expand Down

0 comments on commit 98633fe

Please sign in to comment.