Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@ jobs:
# there and the check still runs.
HAVE_CACHIX: ${{ secrets.CACHIX_AUTH_TOKEN != '' }}
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v16
- uses: actions/checkout@v7
- uses: DeterminateSystems/nix-installer-action@v22
with:
# Upstream Nix, not Determinate Nix: the action has
# defaulted determinate to true since v21, and this
# project targets the Nix everyone else runs.
determinate: false
- if: env.HAVE_CACHIX == 'true'
uses: cachix/cachix-action@v17
with:
Expand All @@ -27,8 +32,13 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v16
- uses: actions/checkout@v7
- uses: DeterminateSystems/nix-installer-action@v22
with:
# Upstream Nix, not Determinate Nix: the action has
# defaulted determinate to true since v21, and this
# project targets the Nix everyone else runs.
determinate: false
- run: |
nix eval 'github:nix-caisson/caisson-compat#lib.caisson-compat.tests.summary' \
--override-input caisson "path:$PWD"
9 changes: 7 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v16
- uses: actions/checkout@v7
- uses: DeterminateSystems/nix-installer-action@v22
with:
# Upstream Nix, not Determinate Nix: the action has
# defaulted determinate to true since v21, and this
# project targets the Nix everyone else runs.
determinate: false
- run: nix run 'nixpkgs#mdbook' -- build
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions pins.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
caisson-core = {
owner = "nix-caisson";
repo = "caisson-core";
rev = "f0670d3a2419bfa603fc7041ce77d8915ecbb915";
narHash = "sha256-smVchmdqGUAwe6lw4hUjWTdmvPKa1ePPEkk6piyFWps=";
rev = "32a7fae933827fd953959535af2ddc170366cafb";
narHash = "sha256-ari+MqiCE5DrdxI+1yUSCyZQRf2Or82O9gCJcRTuxgY=";
};
# The base library: the nixpkgs.lib mirror (nixpkgs' lib directory
# published on its own, a small fetch; the lib sits under /lib).
Expand Down