Skip to content

Commit 7b8909d

Browse files
authored
👷Update EVM version in CI (#1481)
1 parent acd959a commit 7b8909d

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

‎.github/workflows/ci.yml‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
profile: [post-cancun,post-cancun-via-ir,solc-past-versions-0,solc-past-versions-1,via-ir,min-solc,min-solc-via-ir,intense]
19+
profile: [post-prague,post-prague-via-ir,solc-past-versions-0,solc-past-versions-1,via-ir,min-solc,min-solc-via-ir,intense]
2020
steps:
2121
- uses: actions/checkout@v5
2222
- name: Install Foundry Stable
@@ -27,12 +27,12 @@ jobs:
2727
run: forge install
2828
- name: Run Tests with ${{ matrix.profile }}
2929
run: >
30-
( [ "${{ matrix.profile }}" = "post-cancun" ] &&
31-
FOUNDRY_PROFILE=post_cancun forge test --use 0.8.30 &&
30+
( [ "${{ matrix.profile }}" = "post-prague" ] &&
31+
FOUNDRY_PROFILE=post_prague forge test --use 0.8.30 &&
3232
FOUNDRY_PROFILE=zksync forge test --use 0.8.30
3333
) ||
34-
( [ "${{ matrix.profile }}" = "post-cancun-via-ir" ] &&
35-
FOUNDRY_PROFILE=post_cancun forge test --use 0.8.30 --via-ir &&
34+
( [ "${{ matrix.profile }}" = "post-prague-via-ir" ] &&
35+
FOUNDRY_PROFILE=post_prague forge test --use 0.8.30 --via-ir &&
3636
FOUNDRY_PROFILE=zksync forge test --use 0.8.30 --via-ir
3737
) ||
3838
( [ "${{ matrix.profile }}" = "solc-past-versions-0" ] &&

‎foundry.toml‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ remappings = [
1919
[profile.pre_global_structs]
2020
skip = ["*/g/*", "*/*7702*", "*/*BlockHashLib*", "*/*Transient*", "*/ext/ithaca/*", "*/ext/zksync/*"]
2121

22-
[profile.post_cancun]
23-
evm_version = "cancun"
22+
23+
[profile.post_prague]
24+
evm_version = "prague"
2425
skip = ["*/ext/ithaca/*"]
2526

2627
[profile.zksync]

0 commit comments

Comments
 (0)