Skip to content

Commit

Permalink
ci: windows: re-add Foundry to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
elopez committed Jul 29, 2024
1 parent 8bcd0cd commit 4a1c44a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: foundry-rs/foundry-toolchain@v1
- run: |
echo FOUNDRY_PATH="$(dirname "$(which forge)")" >> "$GITHUB_ENV"
shell: bash
- uses: msys2/setup-msys2@v2
with:
msystem: CLANG64
Expand Down Expand Up @@ -213,12 +216,12 @@ jobs:
- name: run tests
run: |
export PATH="$EVM_PATH:$CVC5_PATH:$BITWUZLA_PATH:$DAPP_SOLC_PATH:$HASKELL_PATHS:$PATH"
export PATH="$EVM_PATH:$CVC5_PATH:$BITWUZLA_PATH:$DAPP_SOLC_PATH:$FOUNDRY_PATH:$HASKELL_PATHS:$PATH"
cabal run test
- name: run rpc tests
run: |
export PATH="$HASKELL_PATHS:$PATH"
export PATH="$FOUNDRY_PATH:$HASKELL_PATHS:$PATH"
cabal run rpc-tests
- name: run ethereum tests
Expand Down

0 comments on commit 4a1c44a

Please sign in to comment.