Skip to content

Commit

Permalink
modify yarn install cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Nov 15, 2024
1 parent 388f505 commit 0bb37b4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
runs-on: github-hosted-heavy-runner
strategy:
fail-fast: false
max-parallel: 1
matrix:
profile: [ mainnet, testnet, mainnet-silo, testnet-silo ]
steps:
Expand Down Expand Up @@ -62,7 +61,6 @@ jobs:
runs-on: github-hosted-heavy-runner
strategy:
fail-fast: false
max-parallel: 1
matrix:
profile: [ mainnet, testnet ]
steps:
Expand Down
2 changes: 1 addition & 1 deletion engine-tests/src/utils/one_inch/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fn download_and_compile_solidity_sources(repo_name: &str) -> PathBuf {
// install packages
let output = Command::new("/usr/bin/env")
.current_dir(&sources_dir)
.args(["yarn", "install"])
.args(["yarn", "install", "--force", "--network-timeout", "1000000"])
.output()
.unwrap();
assert!(
Expand Down

0 comments on commit 0bb37b4

Please sign in to comment.