diff --git a/.github/actions/common-setup/action.yml b/.github/actions/common-setup/action.yml index 364bdae..cd63853 100644 --- a/.github/actions/common-setup/action.yml +++ b/.github/actions/common-setup/action.yml @@ -20,5 +20,5 @@ runs: - name: Install nixci shell: bash run: | - nix profile install nixpkgs#nixci + nix profile install github:srid/nixci#nixci nix profile install nixpkgs#just diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index a24e414..5223545 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -19,6 +19,3 @@ jobs: - name: Run Eval check run: nix -Lv eval ./local#checks --override-input namaka github:nix-community/namaka - - - name: Run templates/nixos - run: nix build ./templates/nixos#nixosConfigurations.nixos.config.system.build.toplevel --dry-run --override-input omnibus ./. diff --git a/justfile b/justfile index 1f7201b..1e10171 100644 --- a/justfile +++ b/justfile @@ -29,7 +29,7 @@ deadnix: justfmt: just --fmt --unstable -exmaples-nvfetcher: +examples-nvfetcher: nix run .\#scripts.nvfetch-update ./examples/packages/source.toml template-nixos: @@ -40,7 +40,7 @@ local-nixos: nix build ./local#eval.nixos.expr.nixosConfiguration.config.system.build.toplevel --dry-run --no-link nixci-examples-packages: - (cd examples && {{ override-omnibus }} .. && nixci && {{ remove-flake-lock }}) + (cd examples && {{ override-omnibus }} .. && nixci build && {{ remove-flake-lock }}) examples-simple: nix flake lock --update-input omnibus ./examples/simple --override-input omnibus ./. @@ -59,11 +59,11 @@ examples-system-manager: nixci-examples-python: nix flake lock --update-input omnibus ./examples/python --override-input omnibus ./. - (cd examples/python && nixci && git rm flake.lock -f) + (cd examples/python && nixci build && git rm flake.lock -f) nixci-jupyenv +quarto: # --execute-daemon-restart nix flake lock --update-input omnibus ./examples/jupyenv+quarto --override-input omnibus ./. - (cd examples/jupyenv+quarto && nixci && \ + (cd examples/jupyenv+quarto && nixci build && \ nix run .#quartoSimple -- render ./quarto \ && {{ remove-flake-lock }})