Skip to content

Commit 11ae165

Browse files
authored
👷‍♂️ Update ci (#1416)
1 parent 9c06759 commit 11ae165

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/ci-all-via-ir.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ jobs:
4646
forge test --use 0.8.17 --via-ir
4747
) ||
4848
( [ "${{ matrix.profile }}" = "via-ir-3" ] &&
49+
forge test --use 0.8.30 --via-ir &&
50+
forge test --use 0.8.29 --via-ir &&
4951
forge test --use 0.8.28 --via-ir &&
5052
forge test --use 0.8.27 --via-ir &&
5153
forge test --use 0.8.26 --via-ir &&

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
- name: Run Tests with ${{ matrix.profile }}
2929
run: >
3030
( [ "${{ matrix.profile }}" = "post-cancun" ] &&
31-
FOUNDRY_PROFILE=post_cancun forge test --use 0.8.28 &&
32-
FOUNDRY_PROFILE=zksync forge test --use 0.8.28
31+
FOUNDRY_PROFILE=post_cancun forge test --use 0.8.30 &&
32+
FOUNDRY_PROFILE=zksync forge test --use 0.8.30
3333
) ||
3434
( [ "${{ matrix.profile }}" = "post-cancun-via-ir" ] &&
35-
FOUNDRY_PROFILE=post_cancun forge test --use 0.8.28 --via-ir &&
36-
FOUNDRY_PROFILE=zksync forge test --use 0.8.28 --via-ir
35+
FOUNDRY_PROFILE=post_cancun forge test --use 0.8.30 --via-ir &&
36+
FOUNDRY_PROFILE=zksync forge test --use 0.8.30 --via-ir
3737
) ||
3838
( [ "${{ matrix.profile }}" = "solc-past-versions-0" ] &&
3939
FOUNDRY_PROFILE=pre_global_structs forge test --use 0.8.5 --fuzz-runs 16 &&
@@ -60,7 +60,9 @@ jobs:
6060
forge test --use 0.8.24 --fuzz-runs 16 &&
6161
forge test --use 0.8.25 --fuzz-runs 16 &&
6262
forge test --use 0.8.26 --fuzz-runs 16 &&
63-
forge test --use 0.8.27 --fuzz-runs 16
63+
forge test --use 0.8.27 --fuzz-runs 16 &&
64+
forge test --use 0.8.28 --fuzz-runs 16 &&
65+
forge test --use 0.8.29 --fuzz-runs 16
6466
6567
) ||
6668
( [ "${{ matrix.profile }}" = "via-ir" ] &&

foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# The Default Profile
66
[profile.default]
7-
solc_version = "0.8.28"
7+
solc_version = "0.8.30"
88
evm_version = "paris" # Cancun will be tested in the CI.
99
auto_detect_solc = false
1010
optimizer = true

0 commit comments

Comments
 (0)