Skip to content

Commit

Permalink
Fix Anvil compilation on Windows (sigp#4381)
Browse files Browse the repository at this point in the history
## Issue Addressed

Workaround for foundry-rs/foundry#5115.

## Proposed Changes

Allow Anvil to be installed on Windows without errors by enabling the IPC features (which we don't use, but Anvil expects to exist).
  • Loading branch information
michaelsproul authored and isaac.asimov committed Jul 13, 2023
1 parent da91b60 commit 3779ded
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ jobs:
choco install python protoc visualstudio2019-workload-vctools -y
npm config set msvs_version 2019
- name: Install anvil
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil
# Extra feature to work around https://github.com/foundry-rs/foundry/issues/5115
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil --features ethers/ipc
- name: Install make
run: choco install -y make
- uses: KyleMayes/install-llvm-action@v1
Expand Down

0 comments on commit 3779ded

Please sign in to comment.