Skip to content

Commit 60cac1f

Browse files
authored
chore: upstream 59f354c merge (#782)
1 parent 082aff2 commit 60cac1f

File tree

203 files changed

+9728
-6257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+9728
-6257
lines changed

.github/workflows/deny.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ jobs:
106106

107107
zk-cargo-test:
108108
runs-on: ubuntu-22.04-github-hosted-16core
109-
110109
steps:
111110
- name: Checkout code
112111
uses: actions/checkout@v4
@@ -145,6 +144,14 @@ jobs:
145144
run: |
146145
ZK_DEBUG_HISTORICAL_BLOCK_HASHES=5 cargo nextest run --package '*' --lib --test '*' --filter-expr 'test(~zk)'
147146
147+
deny:
148+
uses: ithacaxyz/ci/.github/workflows/deny.yml@main
149+
with:
150+
# Clear out arguments to not pass `--all-features` to `cargo deny`.
151+
# Many crates have an `openssl` feature which enables banned dependencies.
152+
deny-flags: ""
153+
154+
148155
check-ci-install:
149156
name: CI install
150157
runs-on: ubuntu-22.04
@@ -154,3 +161,18 @@ jobs:
154161
run: cp ./install-foundry-zksync ./foundryup-zksync/* /tmp/ && cd /tmp && ./install-foundry-zksync
155162
- name: Verify installation
156163
run: forge --version
164+
165+
check-ci-install-anvil:
166+
name: CI install anvil-zksync
167+
runs-on: ubuntu-22.04
168+
steps:
169+
- uses: actions/checkout@v4
170+
171+
- name: Install foundry-zksync
172+
run: |
173+
cp ./install-foundry-zksync ./foundryup-zksync/* /tmp/
174+
cd /tmp
175+
./install-foundry-zksync
176+
177+
- name: Verify anvil-zksync installation
178+
run: anvil-zksync --version

0 commit comments

Comments
 (0)