Skip to content

Commit

Permalink
Remove p2p feature since it is not used
Browse files Browse the repository at this point in the history
  • Loading branch information
xgreenx committed Sep 17, 2024
1 parent b50e75d commit d71d375
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion bin/e2e-test-client/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ async fn works_in_local_env() {
}

// Spins up a node for each wallet and verifies that the suite works across multiple nodes
#[cfg(feature = "p2p")]
#[tokio::test(flavor = "multi_thread")]
async fn works_in_multinode_local_env() {
use fuel_core::p2p_test_helpers::*;
Expand Down
4 changes: 2 additions & 2 deletions deployment/e2e-client.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ FROM chef as builder
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
COPY --from=planner /build/recipe.json recipe.json
# Build our project dependencies, not our application!
RUN cargo chef cook --release -p fuel-core-e2e-client --features p2p --recipe-path recipe.json
RUN cargo chef cook --release -p fuel-core-e2e-client --recipe-path recipe.json
# Up to this point, if our dependency tree stays the same,
# all layers should be cached.
COPY . .
RUN cargo build --release -p fuel-core-e2e-client --features p2p
RUN cargo build --release -p fuel-core-e2e-client

# Stage 2: Run
FROM ubuntu:22.04 as run
Expand Down

0 comments on commit d71d375

Please sign in to comment.