Skip to content

Commit

Permalink
Run ci with --determinate too
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Aug 9, 2024
1 parent f963a6e commit e53ce8f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ jobs:
name: Run x86_64 Linux
runs-on: ubuntu-latest
needs: [lints, build-x86_64-linux]
strategy:
matrix:
extra-args: ["--determinate", ""]
permissions:
id-token: "write"
contents: "read"
Expand All @@ -80,6 +83,7 @@ jobs:
uses: DeterminateSystems/nix-installer-action@main
with:
flakehub: true
extra-args: ${{ matrix.extra-args }}
local-root: install-root/
logger: pretty
log-directives: nix_installer=debug
Expand Down Expand Up @@ -167,6 +171,9 @@ jobs:
name: Run x86_64 Linux (No init)
runs-on: ubuntu-latest
needs: [lints, build-x86_64-linux]
strategy:
matrix:
extra-args: ["--determinate", ""]
permissions:
id-token: "write"
contents: "read"
Expand All @@ -189,6 +196,7 @@ jobs:
with:
flakehub: true
init: none
extra-args: ${{ matrix.extra-args }}
planner: linux
local-root: install-root/
logger: pretty
Expand Down Expand Up @@ -224,6 +232,7 @@ jobs:
flakehub: true
init: none
planner: linux
extra-args: ${{ matrix.extra-args }}
local-root: install-root/
logger: pretty
log-directives: nix_installer=debug
Expand Down Expand Up @@ -281,6 +290,9 @@ jobs:
name: Run x86_64 Darwin
runs-on: macos-13
needs: [lints, build-x86_64-darwin]
strategy:
matrix:
extra-args: ["--determinate", ""]
permissions:
id-token: "write"
contents: "read"
Expand All @@ -302,6 +314,7 @@ jobs:
uses: DeterminateSystems/nix-installer-action@main
with:
flakehub: true
extra-args: ${{ matrix.extra-args }}
local-root: install-root/
logger: pretty
log-directives: nix_installer=debug
Expand All @@ -320,6 +333,7 @@ jobs:
uses: DeterminateSystems/nix-installer-action@main
with:
flakehub: true
extra-args: ${{ matrix.extra-args }}
local-root: install-root/
logger: pretty
log-directives: nix_installer=debug
Expand Down Expand Up @@ -364,6 +378,9 @@ jobs:
name: Run aarch64 Linux
runs-on: namespace-profile-default-arm64
needs: [lints, build-aarch64-linux]
strategy:
matrix:
extra-args: ["--determinate", ""]
permissions:
id-token: "write"
contents: "read"
Expand All @@ -386,6 +403,7 @@ jobs:
with:
flakehub: true
local-root: install-root/
extra-args: ${{ matrix.extra-args }}
logger: pretty
log-directives: nix_installer=debug
backtrace: full
Expand Down Expand Up @@ -417,6 +435,7 @@ jobs:
flakehub: true
local-root: install-root/
logger: pretty
extra-args: ${{ matrix.extra-args }}
log-directives: nix_installer=debug
backtrace: full
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -472,6 +491,9 @@ jobs:
name: Run aarch64 Darwin
runs-on: macos-latest-xlarge
needs: [lints, build-aarch64-darwin]
strategy:
matrix:
extra-args: ["--determinate", ""]
permissions:
id-token: "write"
contents: "read"
Expand All @@ -494,6 +516,7 @@ jobs:
with:
flakehub: true
local-root: install-root/
extra-args: ${{ matrix.extra-args }}
logger: pretty
log-directives: nix_installer=debug
backtrace: full
Expand All @@ -512,6 +535,7 @@ jobs:
with:
flakehub: true
local-root: install-root/
extra-args: ${{ matrix.extra-args }}
logger: pretty
log-directives: nix_installer=debug
backtrace: full
Expand Down

0 comments on commit e53ce8f

Please sign in to comment.