fix
This commit is contained in:
@@ -53,9 +53,9 @@ services:
|
||||
RETH_REPO: ${BSC_MAINNET_RETH_REPO:-https://github.com/loocapro/reth-bsc.git}
|
||||
ARCH_TARGET: ${ARCH_TARGET:-native}
|
||||
PROFILE: ${RETH_BUILD_PROFILE:-maxperf}
|
||||
BUILD_OP_RETH: false
|
||||
BUILD_BASE_RETH: false
|
||||
BUILD_BSC_RETH: true
|
||||
BUILD_OP_RETH: "false"
|
||||
BUILD_BASE_RETH: "false"
|
||||
BUILD_BSC_RETH: "true"
|
||||
sysctls:
|
||||
# TCP Performance
|
||||
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
||||
|
||||
@@ -53,9 +53,9 @@ services:
|
||||
RETH_REPO: ${BSC_MAINNET_RETH_REPO:-https://github.com/loocapro/reth-bsc.git}
|
||||
ARCH_TARGET: ${ARCH_TARGET:-native}
|
||||
PROFILE: ${RETH_BUILD_PROFILE:-maxperf}
|
||||
BUILD_OP_RETH: false
|
||||
BUILD_BASE_RETH: false
|
||||
BUILD_BSC_RETH: true
|
||||
BUILD_OP_RETH: "false"
|
||||
BUILD_BASE_RETH: "false"
|
||||
BUILD_BSC_RETH: "true"
|
||||
sysctls:
|
||||
# TCP Performance
|
||||
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
||||
|
||||
@@ -268,9 +268,9 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
||||
cp target/release/base-reth-node /usr/local/bin/base-reth-node; \
|
||||
elif [ "$BUILD_BSC_RETH" = "true" ]; then \
|
||||
echo "DEBUG: Taking BSC_RETH branch" && \
|
||||
echo "Building bsc-reth" && \
|
||||
cargo build --profile $PROFILE --locked --bin bsc-reth --features jemalloc,asm-keccak && \
|
||||
cp target/$PROFILE/bsc-reth /usr/local/bin/reth; \
|
||||
echo "Building reth-bsc" && \
|
||||
cargo build --profile $PROFILE --locked --bin reth-bsc --features jemalloc,asm-keccak && \
|
||||
cp target/$PROFILE/reth-bsc /usr/local/bin/reth; \
|
||||
else \
|
||||
echo "DEBUG: Taking DEFAULT branch" && \
|
||||
echo "Building standard reth" && \
|
||||
|
||||
Reference in New Issue
Block a user