Skip to content

Commit

Permalink
ci/vm-tests: streamline multi-arch testing
Browse files Browse the repository at this point in the history
Disables specialArgs checks for now...
  • Loading branch information
NotAShelf committed Jan 22, 2025
1 parent 984e753 commit 455d235
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .github/workflows/vm-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,16 @@ jobs:
nix:
strategy:
matrix:
system:
- x86_64-linux
- aarch64-linux
test:
- hjem-basic
- hjem-special-args
include:
- os: ubuntu-latest
system: x86_64-linux
test: hjem-basic
- os: ubuntu-22.04-arm
system: aarch64-linux
test: hjem-basic

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: "Set up QEMU support"
uses: docker/setup-qemu-action@v3
with:
platforms: arm64

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
Expand All @@ -32,7 +28,7 @@ jobs:
extra-conf: |
experimental-features = nix-command flakes
allow-import-from-derivation = false
extra-platforms = aarch64-linux
extra-features = kvm nixos-test
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 455d235

Please sign in to comment.