Skip to content

Commit

Permalink
ci: use github arm runners
Browse files Browse the repository at this point in the history
  • Loading branch information
sithlord48 committed Jan 21, 2025
1 parent 5812af1 commit a838e31
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,29 @@ jobs:
args: spdx

deb_builder:
name: debianBuilder-${{matrix.config.name}}
name: debianBuilder-${{matrix.config.name}}-${{matrix.config.debArch}}
runs-on: ${{matrix.config.os}}
strategy:
fail-fast: false
matrix:
config:
- {
name: jammy
, os: ubuntu-22.04
, debArch: amd64
}
- name: noble
os: ubuntu-24.04
debArch: amd64

- name: noble
os: ubuntu-24.04-arm
debArch: arm64

steps:
- uses: sithlord48/[email protected]
- run: git fetch --tags --force
- name: Install Dependencies
run: |
sudo apt-get update -y > /dev/null
sudo apt-get upgrade -y > /dev/null
sudo apt-get install -qqq ${{env.debianRequirments}} > /dev/null
sudo apt search qt | grep installed
pip install --user ntia-conformance-checker
pip install --user spdx-tools
- name: Build
Expand Down

0 comments on commit a838e31

Please sign in to comment.