Skip to content

Commit

Permalink
Add diffutils dep
Browse files Browse the repository at this point in the history
  • Loading branch information
zeme-wana committed May 24, 2024
1 parent 9d7a27c commit 11181cc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ env:

jobs:
nightly-test-suite:
timeout-minutes: 14400
runs-on: [self-hosted, plutus-benchmark]
steps:
- name: Checkout
Expand All @@ -25,9 +24,7 @@ jobs:
- name: plutus-core-nightly
run: |
pushd plutus-core
nix develop --no-warn-dirty --accept-flake-config --command \
cabal run plutus-core-test -- --hedgehog-tests $HEDGEHOG_TESTS
# nix run --no-warn-dirty --accept-flake-config .#plutus-core-test -- --hedgehog-tests $HEDGEHOG_TESTS
nix run --no-warn-dirty --accept-flake-config .#plutus-core-test -- --hedgehog-tests $HEDGEHOG_TESTS
popd
- name: plutus-ir-nightly
Expand Down
8 changes: 8 additions & 0 deletions nix/project.nix
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,14 @@ let
ssreflect
equations
];

plutus-core.components.tests.plutus-core-test.preCheck = ''
PATH=${lib.makeBinPath [ pkgs.diffutils ]}:$PATH
'';

plutus-core.components.tests.plutus-ir-test.preCheck = ''
PATH=${lib.makeBinPath [ pkgs.diffutils ]}:$PATH
'';
};
}

Expand Down

0 comments on commit 11181cc

Please sign in to comment.