Skip to content

Commit fc72254

Browse files
committed
Merge branch 'main' into upstream-5e72c69
2 parents d86d311 + 886ff8b commit fc72254

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.github/scripts/matrices.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ def main():
116116
os_str = f" ({target.target})"
117117

118118
name = case.name
119-
flags = f"-E '{case.filter}'"
119+
# NOTE(zk): filter out zk tests from upstream ci runs
120+
flags = f"-E '{case.filter} & not (test(~zk) or test(~test_zk_aave_di) or package(~zksync))'"
120121
if case.n_partitions > 1:
121122
s = f"{partition}/{case.n_partitions}"
122123
name += f" ({s})"

.github/workflows/nextest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ jobs:
8383
SVM_TARGET_PLATFORM: ${{ matrix.svm_target_platform }}
8484
HTTP_ARCHIVE_URLS: ${{ secrets.HTTP_ARCHIVE_URLS }}
8585
WS_ARCHIVE_URLS: ${{ secrets.WS_ARCHIVE_URLS }}
86-
run: cargo nextest run ${{ matrix.flags }} --filter-expr 'not (test(~zk) or test(~test_zk_aave_di))'
86+
run: cargo nextest run ${{ matrix.flags }}

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ jobs:
8888
uses: mikepenz/release-changelog-builder-action@v4
8989
with:
9090
configuration: "./.github/changelog.json"
91-
fromTag: ${{ env.IS_NIGHTLY == 'true' && 'nightly' || '' }}
9291
fromTag: 'nightly'
9392
toTag: ${{ steps.release_info.outputs.tag_name }}
9493
env:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
RUST_BACKTRACE: full
141141
TEST_MAINNET_URL: http://localhost:8011
142142
run: |
143-
ZK_DEBUG_HISTORICAL_BLOCK_HASHES=5 cargo nextest run --package '*' --lib --test '*' --filter-expr 'test(~zk) and not test(~test_zk_aave_di)'
143+
ZK_DEBUG_HISTORICAL_BLOCK_HASHES=5 cargo nextest run --package '*' --lib --test '*' -E '(test(~zk) or package(~zksync)) and not test(~test_zk_aave_di)'
144144
145145
deny:
146146
uses: ithacaxyz/ci/.github/workflows/deny.yml@main

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ zksync_vm_interface = { git = "https://github.com/matter-labs/zksync-era.git", r
254254
zksync_multivm = { git = "https://github.com/matter-labs/zksync-era.git", rev = "core-v25.4.0" }
255255
zksync_utils = { git = "https://github.com/matter-labs/zksync-era.git", rev = "core-v25.4.0" }
256256
zksync_contracts = { git = "https://github.com/matter-labs/zksync-era.git", rev = "core-v25.4.0" }
257-
era-solc = { git = "https://github.com/matter-labs/era-compiler-solidity.git", tag = "1.5.10", package = "era-solc" }
257+
era-solc = { git = "https://github.com/matter-labs/era-compiler-solidity.git", tag = "1.5.11", package = "era-solc" }
258258

259259
# macros
260260
proc-macro2 = "1.0"

crates/config/src/zksync.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ pub fn config_zksolc_compiler(config: &Config) -> Result<ZkSolcCompiler, SolcErr
176176
{
177177
zksolc
178178
} else if !config.offline {
179-
let default_version = semver::Version::new(1, 5, 10);
179+
let default_version = semver::Version::new(1, 5, 11);
180180
let mut zksolc = ZkSolc::find_installed_version(&default_version)?;
181181
if zksolc.is_none() {
182182
ZkSolc::blocking_install(&default_version)?;

crates/forge/tests/it/test_helpers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ impl ForgeTestProfile {
201201
zk_config.zksync.startup = true;
202202
zk_config.zksync.fallback_oz = true;
203203
zk_config.zksync.optimizer_mode = '3';
204-
zk_config.zksync.zksolc = Some(foundry_config::SolcReq::Version(Version::new(1, 5, 10)));
204+
zk_config.zksync.zksolc = Some(foundry_config::SolcReq::Version(Version::new(1, 5, 11)));
205205
zk_config.fuzz.no_zksync_reserved_addresses = true;
206206
zk_config.invariant.depth = 15;
207207

crates/zksync/compilers/src/compilers/zksolc/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub const ZKSOLC: &str = "zksolc";
4040
/// ZKsync solc release used for all ZKsync solc versions
4141
pub const ZKSYNC_SOLC_RELEASE: Version = Version::new(1, 0, 1);
4242
/// Default zksolc version
43-
pub const ZKSOLC_VERSION: Version = Version::new(1, 5, 10);
43+
pub const ZKSOLC_VERSION: Version = Version::new(1, 5, 11);
4444

4545
#[cfg(test)]
4646
macro_rules! take_solc_installer_lock {

0 commit comments

Comments
 (0)