From c1aef574b145ffef8af25e1a50b700ff603324f4 Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Sun, 15 Oct 2023 19:09:40 -0600 Subject: [PATCH] Try to build only x84_64 for now --- .gitea/workflows/check-flake.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/check-flake.yaml b/.gitea/workflows/check-flake.yaml index 6a2f53e..6b3a98e 100644 --- a/.gitea/workflows/check-flake.yaml +++ b/.gitea/workflows/check-flake.yaml @@ -24,7 +24,14 @@ jobs: fetch-depth: 0 - name: Check Flake - run: nix flake check --show-trace + run: | + # Can only build x84_64 for now, so pick out those specifically + # nix flake check --show-trace + + nix build .#nixosConfigurations."ray".config.system.build.toplevel + nix build .#nixosConfigurations."s0".config.system.build.toplevel + nix build .#nixosConfigurations."ponyo".config.system.build.toplevel + nix build .#nixosConfigurations."zoidberg".config.system.build.toplevel - name: Setup SSH For Pushing to Binary Cache run: |