Skip to content

Commit

Permalink
Fixes (#6)
Browse files Browse the repository at this point in the history
* chore: Remove build artifacts

* fix: Nixpkgs versions

* Prep for review
  • Loading branch information
samuelburnham authored Mar 5, 2025
1 parent 17e862c commit 29b86ca
Show file tree
Hide file tree
Showing 8 changed files with 81 additions and 101 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ jobs:
runs-on: warp-ubuntu-latest-x64-16x
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: cachix/cachix-action@v14
- uses: cachix/install-nix-action@v30
with:
nix_path: nixpkgs=channel:nixos-unstable
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v15
with:
name: argumentcomputer
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: |
nix build .#cacheRoots
- run: nix build .#cacheRoots
- run: nix build
working-directory: ${{ github.workspace }}/templates/minimal

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
!.gitignore
templates/**/flake.lock
**/result*
**/.lake
22 changes: 11 additions & 11 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

68 changes: 27 additions & 41 deletions templates/dependency/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion templates/dependency/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
lean4-nix.url = "github:argumentcomputer/lean4-nix";
lean4-nix = {
url = "github:argumentcomputer/lean4-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};

outputs = inputs @ {
Expand Down
1 change: 0 additions & 1 deletion templates/dependency/result

This file was deleted.

68 changes: 27 additions & 41 deletions templates/minimal/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion templates/minimal/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
lean4-nix.url = "github:argumentcomputer/lean4-nix";
lean4-nix = {
url = "github:argumentcomputer/lean4-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};

outputs = inputs @ {
Expand Down

0 comments on commit 29b86ca

Please sign in to comment.