Skip to content

Commit d806631

Browse files
committed
Fix eval checks
1 parent 284f3dc commit d806631

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/pipeline.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,14 +223,18 @@ jobs:
223223
steps:
224224
- uses: actions/checkout@v4
225225
- name: "Check that evaluation of hydra jobs works without using remote builders for GHC 9.6.7"
226-
run: nix path-info --derivation .#requiredJobs.x86_64-darwin.required-unstable-ghc967-native --show-trace --builders ''
226+
run: |
227+
sed -i 's/runningHydraEvalTest = true;/runningHydraEvalTest = false;/' flake.nix
228+
nix path-info --derivation .#requiredJobs.x86_64-darwin.required-unstable-ghc967-native --show-trace --builders ''
227229
228230
hydra-without-remote-builders-ghc9102:
229231
runs-on: [self-hosted, linux]
230232
steps:
231233
- uses: actions/checkout@v4
232234
- name: "Check that evaluation of hydra jobs works without using remote builders for GHC 9.10.2"
233-
run: nix path-info --derivation .#requiredJobs.x86_64-darwin.required-unstable-ghc9102-native --show-trace --builders ''
235+
run: |
236+
sed -i 's/runningHydraEvalTest = true;/runningHydraEvalTest = false;/' flake.nix
237+
nix path-info --derivation .#requiredJobs.x86_64-darwin.required-unstable-ghc9102-native --show-trace --builders ''
234238
235239
hix-cabal:
236240
runs-on: [self-hosted, linux]

0 commit comments

Comments
 (0)