Skip to content

Commit

Permalink
build.yml: enable build on aarch64-linux
Browse files Browse the repository at this point in the history
  • Loading branch information
veprbl committed Jan 28, 2025
1 parent 950c1d5 commit 7050868
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
strategy:
matrix:
arch:
- { name: 'aarch64-linux', runs-on: ubuntu-24.04-arm }
- { name: 'x86_64-linux', runs-on: ubuntu-latest }
- { name: 'x86_64-darwin', runs-on: macos-latest }
name: ${{ matrix.arch.name }}
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
let

inherit (nixpkgs) lib;
supportedSystems = [ "x86_64-linux" "x86_64-darwin" ];
supportedSystems = [ "aarch64-linux" "x86_64-linux" "x86_64-darwin" ];

pkgsFor = system: import nixpkgs {
inherit system;
Expand Down

0 comments on commit 7050868

Please sign in to comment.