Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ jobs:
clang \
llvm-dev \
gcc-multilib \
g++-multilib
g++-multilib \
protobuf-compiler
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -74,7 +75,7 @@ jobs:
export AR_aarch64_unknown_linux_gnu=aarch64-linux-gnu-ar
export PKG_CONFIG_ALLOW_CROSS=1
export DOCKER_TAG=${{ steps.set-tag.outputs.DOCKER_TAG }}
FEATURES="${FEATURES:-jemalloc}"
FEATURES="${FEATURES:-jemalloc,remote-exex}"
PROFILE="${PROFILE:-release}"
cross build --bin ev-reth --target x86_64-unknown-linux-gnu --features "$FEATURES" --profile "$PROFILE"
JEMALLOC_SYS_WITH_LG_PAGE=16 cross build --bin ev-reth --target aarch64-unknown-linux-gnu --features "$FEATURES" --profile "$PROFILE"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
cargo nextest run \
--locked \
--workspace \
--exclude ev-exex-remote \
-E "package(ev-tests)" \
--no-capture
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
cargo nextest run \
--locked \
--workspace \
--exclude ev-exex-remote \
-E 'kind(test) - package(ev-tests)' \
--no-tests=warn \
--no-capture
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo clippy --bin ev-reth --workspace --features "jemalloc"
- run: cargo clippy --bin ev-reth --workspace --exclude ev-exex-remote --features "jemalloc"
env:
RUSTFLAGS: -D warnings

Expand All @@ -39,7 +39,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo clippy --workspace --examples --tests --benches --all-features
- run: cargo clippy --workspace --exclude ev-exex-remote --examples --tests --benches
env:
RUSTFLAGS: -D warnings

Expand All @@ -53,7 +53,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo hack check
- run: cargo hack check --exclude ev-exex-remote

docs:
name: docs
Expand All @@ -67,7 +67,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo doc --document-private-items --no-deps
- run: cargo doc --workspace --exclude ev-exex-remote --document-private-items --no-deps
env:
# Keep in sync with ./book.yml:jobs.build
# This should only add `-D warnings`
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
cargo nextest run \
--locked \
--workspace \
--exclude ev-exex-remote \
-E "(kind(lib) | kind(bin) | kind(proc-macro))" \
--no-tests=warn

Expand Down Expand Up @@ -67,7 +68,7 @@ jobs:
with:
cache-on-failure: true
- name: Run doctests
run: cargo test --doc --workspace
run: cargo test --doc --workspace --exclude ev-exex-remote

unit-success:
name: unit success
Expand Down
Loading
Loading