Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,27 @@ jobs:
include:
- RELEASE: latest
ARCH: x86_64
RUNS_ON: ubuntu-24.04
- RELEASE: latest
ARCH: armhf
RUNS_ON: ubuntu-24.04-arm
- RELEASE: latest
ARCH: aarch64
RUNS_ON: ubuntu-24.04-arm

# special builds
- RELEASE: latest
ARCH: x86_64
BUILD_TYPE: coverage
RUNS_ON: ubuntu-24.04
- RELEASE: latest
ARCH: x86_64
BUILD_TYPE: shared-only
LIBAPPIMAGE_SHARED_ONLY: 1
RUNS_ON: ubuntu-24.04

name: ${{ matrix.BUILD_TYPE }} ${{ matrix.DIST }} ${{ matrix.ARCH }} shared-only=${{ matrix.LIBAPPIMAGE_SHARED_ONLY }}
runs-on: ubuntu-latest
runs-on: ${{ matrix.RUNS_ON }}
env:
ARCH: ${{ matrix.ARCH }}
RELEASE: ${{ matrix.RELEASE }}
Expand All @@ -35,8 +40,6 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up QEMU integration for Docker
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Build libappimage and run tests
run: bash -ex ci/build-in-docker.sh
env:
Expand Down