Skip to content

Commit

Permalink
Merge pull request #47 from dbarrosop/master
Browse files Browse the repository at this point in the history
feat: added support for arm64 runners
  • Loading branch information
rickynils authored Nov 5, 2024
2 parents e6f778d + 4e21152 commit eb8469b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
flake-utils,
nixpkgs-unstable,
}:
let allSystems = ["x86_64-linux" "x86_64-darwin"];
let allSystems = [ "aarch64-linux" "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ];
in flake-utils.lib.eachSystem allSystems (system:

let
Expand Down
19 changes: 17 additions & 2 deletions nix-quick-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,28 @@ set -o pipefail

source "${BASH_SOURCE[0]%/*}/vercomp.sh"

case "$(uname -m)" in
x86_64)
arch="x86_64"
;;
arm64)
sys="aarch64"
;;
aarch64)
arch="aarch64"
;;
*)
echo >&2 "unsupported architecture: $(uname -m)"
exit 1
esac

# Figure out system type (TODO don't assume x86_64)
case "$OSTYPE" in
darwin*)
sys="x86_64-darwin"
sys="$arch-darwin"
;;
linux*)
sys="x86_64-linux"
sys="$arch-linux"
;;
*)
echo >& "unsupported OS type: $OSTYPE"
Expand Down

0 comments on commit eb8469b

Please sign in to comment.