From 4c9e99e8e8e36bcdfa9cdb102e45e4dc95aa5c5b Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Sun, 22 Jun 2025 23:03:36 -0500 Subject: [PATCH] ci: disable home-manager install tests on darwin nix broken on latest channel update Signed-off-by: Austin Horstman --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 50e39a450..996b3354e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,11 @@ jobs: - run: nix build --show-trace .#docs-jsonModuleMaintainers - run: nix fmt -- --ci - run: nix run .#home-manager -- init --switch + # FIXME: nix broken on darwin on unstable + if: matrix.os != 'macos-latest' - run: yes | nix run . -- uninstall + # FIXME: nix broken on darwin on unstable + if: matrix.os != 'macos-latest' - name: Run tests run: nix build -j auto --show-trace --option allow-import-from-derivation false --reference-lock-file flake.lock "./tests#test-all-no-big" env: