ci: also build on ubuntu-24.04-arm

This commit is contained in:
Ryan 2025-03-11 20:37:32 -04:00
parent 90512d631d
commit bbb026b7bc
Signed by: ErrorNoInternet
GPG Key ID: 2486BFB7B1E6A4A3

View File

@ -9,8 +9,12 @@ on:
jobs: jobs:
errornowatcher: errornowatcher:
name: errornowatcher name: errornowatcher (${{ matrix.os }})
runs-on: ubuntu-24.04 runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-24.04, ubuntu-24.04-arm]
steps: steps:
- name: Clone repository - name: Clone repository
@ -28,7 +32,7 @@ jobs:
~/.cargo/registry/cache/ ~/.cargo/registry/cache/
~/.cargo/git/db/ ~/.cargo/git/db/
target/ target/
key: build-${{ runner.os }}-${{ hashFiles('Cargo.*') }} key: build-${{ matrix.os }}-${{ hashFiles('Cargo.*') }}
- name: Switch to nightly toolchain - name: Switch to nightly toolchain
run: rustup default nightly run: rustup default nightly