Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build on Github Actions Linux ARM64 target #1318

Merged
merged 1 commit into from
Mar 4, 2025
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
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,13 @@ jobs:
name: macOS
path: build/qdigidoc4*.zip
ubuntu:
name: Build on Ubuntu ${{ matrix.container }}
runs-on: ubuntu-latest
name: Build on Ubuntu ${{ matrix.container }} ${{ matrix.arch }}
runs-on: ubuntu-24.04${{ matrix.arch == 'arm64' && '-arm' || '' }}
container: ubuntu:${{ matrix.container }}
strategy:
matrix:
container: ['22.04', '24.04', '24.10']
arch: ['amd64', 'arm64']
env:
DEBIAN_FRONTEND: noninteractive
DEBFULLNAME: github-actions
Expand All @@ -67,7 +68,7 @@ jobs:
with:
workflow: build.yml
branch: master
name: ubuntu_${{ matrix.container }}
name: ubuntu_${{ matrix.container }}_${{ matrix.arch }}
path: libdigidocpp-pkg
repo: open-eid/libdigidocpp
- name: Install dependencies
Expand All @@ -91,7 +92,7 @@ jobs:
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: ubuntu_${{ matrix.container }}
name: ubuntu_${{ matrix.container }}_${{ matrix.arch }}
path: qdigidoc4*.*
fedora:
name: Build on Fedora ${{ matrix.container }}
Expand Down Expand Up @@ -208,7 +209,7 @@ jobs:
with:
workflow: build.yml
branch: master
name: ubuntu_24.04
name: ubuntu_24.04_amd64
path: libdigidocpp-pkg
repo: open-eid/libdigidocpp
- name: Install dependencies
Expand Down Expand Up @@ -250,7 +251,7 @@ jobs:
with:
workflow: build.yml
branch: master
name: ubuntu_24.04
name: ubuntu_24.04_amd64
path: libdigidocpp-pkg
repo: open-eid/libdigidocpp
- name: Install dependencies
Expand Down
Loading