diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index 03463f504a87..e20d159e21ff 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -65,7 +65,6 @@ jobs: nix build ".#ibis${version//./}" --fallback --keep-going --print-build-logs - name: nix build devShell - if: github.event_name == 'push' run: | set -euo pipefail diff --git a/nix/quarto/default.nix b/nix/quarto/default.nix index 3e2d89fbbda7..d7921ed90ba6 100644 --- a/nix/quarto/default.nix +++ b/nix/quarto/default.nix @@ -13,10 +13,12 @@ let platforms = { "x86_64-linux" = "linux-amd64"; + "aarch64-linux" = "linux-arm64"; "aarch64-darwin" = "macos"; }; shas = { "x86_64-linux" = "sha256-X+VgTY649Vo37u8byNzLD+KPVK3MRdySAPN0ZhdBw0g="; + "aarch64-linux" = "sha256-xOfh+lrLEaU2ph20COBBg+PuZjzNZwD1NSGjcCyoL1I="; "aarch64-darwin" = "sha256-yK0y7gnYWKO5vRBoBtYva3cmIL4ddoeYhn2Gor/NUCs="; }; inherit (stdenv.hostPlatform) system; @@ -66,7 +68,7 @@ stdenv.mkDerivation rec { changelog = "https://github.com/quarto-dev/quarto-cli/releases/tag/v${version}"; license = licenses.gpl2Plus; maintainers = with maintainers; [ mrtarantoga ]; - platforms = [ "x86_64-linux" "aarch64-darwin" ]; + platforms = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" ]; sourceProvenance = with sourceTypes; [ binaryNativeCode binaryBytecode ]; }; }