Skip to content

Commit

Permalink
chore: v55 upgrade (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
lightsing authored Feb 12, 2025
1 parent 0583d40 commit 6accb0b
Show file tree
Hide file tree
Showing 46 changed files with 1,997 additions and 143 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ concurrency:

on:
push:
branches: [main, "release/**"]
branches: [main, "release/**", "scroll-evm-executor/**"]
pull_request:
branches: [main, "release/**"]
branches: [main, "release/**", "scroll-evm-executor/**"]

env:
CARGO_TERM_COLOR: always
Expand All @@ -22,7 +22,16 @@ jobs:
fail-fast: false
matrix:
rust: ["stable", "beta", "nightly"]
flags: ["--no-default-features", "", "--all-features"]
flags: [
"--no-default-features",
"",
"--features=\"scroll\"",
"--features=\"scroll, scroll-poseidon-codehash\"",
"--features=\"all, scroll\"",
"--features=\"all, scroll, scroll-poseidon-codehash\"",
"--features=\"optimism\"",
"--features=\"all, optimism\""
]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
Expand Down Expand Up @@ -66,7 +75,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy --workspace --all-targets --all-features
- run: cargo clippy --workspace --all-targets --features all,scroll
env:
RUSTFLAGS: -Dwarnings
- run: cargo clippy --workspace --all-targets --features all,optimism
env:
RUSTFLAGS: -Dwarnings

Expand All @@ -79,7 +91,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
components: rust-docs
- run: cargo doc --workspace --all-features --no-deps --document-private-items
- run: cargo doc --workspace --features all,scroll --no-deps --document-private-items
env:
RUSTDOCFLAGS: "--cfg docsrs -D warnings"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ethereum-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ concurrency:

on:
push:
branches: [main, "release/**"]
branches: [main, "release/**", "scroll-evm-executor/**"]
pull_request:
branches: [main, "release/**"]
branches: [main, "release/**", "scroll-evm-executor/**"]

jobs:
tests-stable:
Expand Down
Loading

0 comments on commit 6accb0b

Please # to comment.