From fc254277a001b8eddc968cd358ddfcdce1610ef7 Mon Sep 17 00:00:00 2001 From: Cody Allen Date: Mon, 30 Jun 2025 16:40:52 -0400 Subject: [PATCH 1/2] nix flake: add aarch64-linux as supported platform --- .github/workflows/nix-dev-cache.yaml | 1 + flake.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/nix-dev-cache.yaml b/.github/workflows/nix-dev-cache.yaml index e16fda0733..715f719ad2 100644 --- a/.github/workflows/nix-dev-cache.yaml +++ b/.github/workflows/nix-dev-cache.yaml @@ -22,6 +22,7 @@ jobs: matrix: os: - ubuntu-24.04 + - ubuntu-24.04-arm - macos-13 - macos-14 steps: diff --git a/flake.nix b/flake.nix index 3f9f2f9932..978573442b 100644 --- a/flake.nix +++ b/flake.nix @@ -24,6 +24,7 @@ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" + "aarch64-linux" ] (system: let versions = import ./nix/versions.nix {inherit (nixpkgs-haskellNix) lib;}; From c04de5326083c5e0f03b6c2a2d3015b363efc2bb Mon Sep 17 00:00:00 2001 From: Cody Allen Date: Wed, 2 Jul 2025 15:14:02 -0400 Subject: [PATCH 2/2] Nix dev cache: disable ARM linux builds for now See https://github.com/unisonweb/unison/issues/5789 --- .github/workflows/nix-dev-cache.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nix-dev-cache.yaml b/.github/workflows/nix-dev-cache.yaml index 715f719ad2..70234e2740 100644 --- a/.github/workflows/nix-dev-cache.yaml +++ b/.github/workflows/nix-dev-cache.yaml @@ -22,7 +22,7 @@ jobs: matrix: os: - ubuntu-24.04 - - ubuntu-24.04-arm + # - ubuntu-24.04-arm https://github.com/unisonweb/unison/issues/5789 - macos-13 - macos-14 steps: