Skip to content

Commit 04d7167

Browse files
committed
CI: Unify solidity version on windows machine
We are using solc 0.8.31 in flake.nix, but we were using 0.8.33 binary on windows, and, more importantly, version 0.8.26 of the repository. Here we unify all versions to 0.8.31.
1 parent e59ad40 commit 04d7167

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,9 @@ jobs:
219219

220220
- uses: actions/checkout@v4
221221
with:
222-
repository: ethereum/solidity
223-
ref: 8a97fa7a1db1ec509221ead6fea6802c684ee887
224-
path: ethereum-solidity
222+
repository: argotorg/solidity
223+
ref: fd3a22656ebe9c91a96ebd846ab7699b5f2e053c
224+
path: solidity
225225
persist-credentials: false
226226

227227
- name: Download execution-spec-tests fixtures
@@ -250,11 +250,11 @@ jobs:
250250
echo CVC5_PATH="$PWD/cvc5-Win64-x86_64-static/bin" >> "$GITHUB_ENV"
251251
# solc
252252
mkdir solc
253-
curl --retry 5 -fsSL https://github.com/argotorg/solidity/releases/download/v0.8.33/solc-windows.exe -o solc/solc.exe
253+
curl --retry 5 -fsSL https://github.com/argotorg/solidity/releases/download/v0.8.31/solc-windows.exe -o solc/solc.exe
254254
echo DAPP_SOLC="$PWD/solc/solc.exe" >> "$GITHUB_ENV"
255255
echo DAPP_SOLC_PATH="$PWD/solc/" >> "$GITHUB_ENV"
256256
# repos
257-
echo HEVM_SOLIDITY_REPO="$PWD/ethereum-solidity" >> "$GITHUB_ENV"
257+
echo HEVM_SOLIDITY_REPO="$PWD/solidity" >> "$GITHUB_ENV"
258258
echo HEVM_ETHEREUM_TESTS_REPO="$PWD/fixtures/blockchain_tests" >> "$GITHUB_ENV"
259259
echo HEVM_FORGE_STD_REPO="$PWD/forge-std" >> "$GITHUB_ENV"
260260

0 commit comments

Comments
 (0)