diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 9b7b9b0..d79ec02 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -36,8 +36,7 @@ jobs: with: name: aciceri-fleet authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" - - run: sed -i 's/#\(.*\).*\#.* ga-uncomment/\1/g' flake.nix # disabling outputs unsupported inside the GitHub action - - run: echo "hello" # nix -Lv flake check + - run: nix -Lv flake check - run: nix -Lv build ".#nixosConfigurations.pc.config.system.build.toplevel" - run: nix -Lv build ".#nixosConfigurations.pbp.config.system.build.toplevel" --option system aarch64-linux - run: nix -Lv build ".#nixosConfigurations.hs.config.system.build.toplevel" \ No newline at end of file diff --git a/flake.nix b/flake.nix index a4bf651..4710db8 100644 --- a/flake.nix +++ b/flake.nix @@ -141,14 +141,5 @@ deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations { }; - } - // { - # The following line gets uncommented by the GitHub action during CI (`ga-uncomment`) - # is a placeholder to make `sed` find the correct line. - # This is because I found no way to get an `aarch64` GitHub runner or supporting `kvm`. - # If only there was a way to evaluate `flakes` passing arguments I could avoit this - # hacky solution. - - # checks.aarch64-linux = { }; # ga-uncomment - }; + }; }