Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Karrq committed Oct 7, 2024
1 parent 35770f1 commit 37de24e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,8 @@ jobs:
[[ "$TARGET" == *windows* ]] && ext=".exe"
cargo build "${flags[@]}"
bins=(cast forge)
for name in "${bins[@]}"; do
bin=$OUT_DIR/$name$ext
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
cache-on-failure: true
- name: cargo test
run: cargo test --doc -p forge -p cast
run: cargo test --doc -p forge

clippy:
name: clippy
Expand Down
4 changes: 2 additions & 2 deletions crates/zksync/compiler/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ pub fn config_create_project(
/// 1. If `solc_path` in zksync config options is set, use it.
/// 2. If `solc_path` is not set, check the `solc` requirements: a. If a version is specified, use
/// zkVm solc matching that version. b. If a path is specified, use it.
/// 3. If none of the above, use autodetect which will match source files to a compiler version
/// and use zkVm solc matching that version.
/// 3. If none of the above, use autodetect which will match source files to a compiler version and
/// use zkVm solc matching that version.
fn config_solc_compiler(config: &Config) -> Result<SolcCompiler, SolcError> {
if let Some(path) = &config.zksync.solc_path {
if !path.is_file() {
Expand Down
5 changes: 1 addition & 4 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,9 @@ allow-git = [
"https://github.com/paradigmxyz/revm-inspectors",
"https://github.com/bluealloy/revm",
"https://github.com/lambdaclass/zksync-web3-rs",
"https://github.com/Moonsong-Labs/compilers",
"https://github.com/Moonsong-Labs/foundry-zksync-fork-db",
"https://github.com/Moonsong-Labs/block-explorers",
"https://github.com/RustCrypto/hashes",
"https://github.com/jrigada/zksync-web3-rs.git",
]

[sources.allow-org]
github = ["matter-labs"]
github = ["matter-labs", "Moonsong-Labs"]

0 comments on commit 37de24e

Please sign in to comment.