Skip to content

Commit

Permalink
chore(ci): fix broken yaml vars.
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-tb committed Sep 5, 2024
1 parent 6c97671 commit c6d76aa
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/configs/feature.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
variables:
legacy_fork: Shanghai
mainnet_fork: Cancun
development_fork: Prague
past_fork: &past_fork Shanghai
mainnet_fork: &mainnet_fork Cancun
development_fork: &development_fork Prague

legacy:
evm-type: stable
fill-params: --until=${legacy_fork}
fill-params: --until=*{past_fork}
solc: 0.8.21

stable:
evm-type: stable
fill-params: --fork=${mainnet_fork}
fill-params: --fork=*{mainnet_fork}
solc: 0.8.21

develop:
evm-type: develop
fill-params: --from=${mainnet_fork} --until=${development_fork}
fill-params: --from=*{mainnet_fork} --until=*{development_fork}
solc: 0.8.21

eip7692:
Expand Down

0 comments on commit c6d76aa

Please sign in to comment.