Skip to content

Commit 99823a2

Browse files
authored
fix(github): Remove --solc-version flag from fixture building action (#1937)
* fix(github): Remove `--solc-version` flag from fixture building action * fix(github): Remove `solc` from all features
1 parent c8cb0ba commit 99823a2

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/actions/build-fixtures/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434
- name: Generate fixtures using fill
3535
shell: bash
3636
run: |
37-
uv run fill -n ${{ steps.evm-builder.outputs.x-dist }} --evm-bin=${{ steps.evm-builder.outputs.evm-bin }} --solc-version=${{ steps.properties.outputs.solc }} ${{ steps.properties.outputs.fill-params }} --output=fixtures_${{ inputs.release_name }}.tar.gz --build-name ${{ inputs.release_name }}
37+
uv run fill -n ${{ steps.evm-builder.outputs.x-dist }} --evm-bin=${{ steps.evm-builder.outputs.evm-bin }} ${{ steps.properties.outputs.fill-params }} --output=fixtures_${{ inputs.release_name }}.tar.gz --build-name ${{ inputs.release_name }}
3838
- name: Wrap ethereum/tests fixtures with eofwrap tool
3939
shell: bash
4040
if: ${{ steps.properties.outputs.eofwrap }}

.github/configs/feature.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,19 @@
22
stable:
33
evm-type: stable
44
fill-params: --until=Prague
5-
solc: 0.8.21
65
develop:
76
evm-type: develop
87
fill-params: --until=Osaka
9-
solc: 0.8.21
108
static:
119
evm-type: static
1210
fill-params: --until=Osaka --fill-static-tests ./tests/static
13-
solc: 0.8.21
1411
benchmark_test:
1512
evm-type: benchmark
1613
fill-params: --from=Cancun --until=Prague --gas-benchmark-values 1,10,30,45,60,90,120 -m benchmark --generate-all-formats ./tests
17-
solc: 0.8.21
1814
feature_only: true
1915
eip7692:
2016
evm-type: eip7692
2117
fill-params: --fork=EOFv1 ./tests/unscheduled
22-
solc: 0.8.21
2318
eofwrap: true
2419
feature_only: true
2520
fusaka-devnet-2:

0 commit comments

Comments
 (0)