diff --git a/.github/actions/build-fixtures/action.yaml b/.github/actions/build-fixtures/action.yaml index fcf6b78e58..8d2cc041b7 100644 --- a/.github/actions/build-fixtures/action.yaml +++ b/.github/actions/build-fixtures/action.yaml @@ -23,14 +23,6 @@ runs: id: evm-builder with: type: ${{ steps.properties.outputs.evm-type }} - - name: Install solc compiler - shell: bash - run: | - if [ "$RUNNER_OS" == "Linux" ]; then PLATFORM="linux-amd64"; else PLATFORM="macosx-amd64"; fi - RELEASE_NAME=$(curl https://binaries.soliditylang.org/${PLATFORM}/list.json | jq -r --arg SOLC_VERSION "${{ steps.properties.outputs.solc }}" '.releases[$SOLC_VERSION]') - wget -O $GITHUB_WORKSPACE/bin/solc https://binaries.soliditylang.org/${PLATFORM}/$RELEASE_NAME - chmod a+x $GITHUB_WORKSPACE/bin/solc - echo $GITHUB_WORKSPACE/bin >> $GITHUB_PATH - name: Run fixtures fill shell: bash run: | @@ -38,6 +30,7 @@ runs: python -m venv env source env/bin/activate pip install -e . + solc-select use 0.8.25 --always-install fill -n auto --evm-bin=${{ steps.evm-builder.outputs.evm-bin }} ${{ steps.properties.outputs.fill-params }} - name: Create fixtures info file shell: bash