Skip to content

Commit

Permalink
feat(ci): Try aarch64-linux builds.
Browse files Browse the repository at this point in the history
This will be emulated but hopefully still working.
  • Loading branch information
vifino committed Jan 13, 2024
1 parent cd1eaf7 commit 81028e6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
system: [x86_64-linux, i686-linux]
system: [x86_64-linux, i686-linux, aarch64-linux]
check: [loop, tcp, rdma]
exclude:
# Failed to find module 'rdma_rxe'
Expand All @@ -20,8 +20,13 @@ jobs:
name: ${{ matrix.system }} - ${{ matrix.check }}
steps:
- uses: actions/checkout@v3
- name: Setup QEMU User and binfmt
uses: docker/setup-qemu-action@v3
if: ${{ matrix.system == 'aarch64-linux' }}
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
extra-conf: "extra-platforms = aarch64-linux"
- name: Setup Magic Nix cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Run Flake Check
Expand Down

0 comments on commit 81028e6

Please sign in to comment.