mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-10 14:26:26 +00:00
small modifications
- Jenkins: we don't need LOG_LEVEL=TRACE twice for the same binaries - eth2_network_simulation: allow overriding NETWORK_TYPE and BOOTSTRAP_NODE_NETWORK_TYPE from the environment
This commit is contained in:
parent
c25f8d4adf
commit
571818495f
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -21,7 +21,7 @@ def runStages() {
|
|||||||
parallel(
|
parallel(
|
||||||
"tools": {
|
"tools": {
|
||||||
stage("Tools") {
|
stage("Tools") {
|
||||||
sh "make -j${env.NPROC} LOG_LEVEL=TRACE"
|
sh "make -j${env.NPROC}"
|
||||||
sh "make -j${env.NPROC} LOG_LEVEL=TRACE NIMFLAGS='-d:NETWORK_TYPE=libp2p -d:testnet_servers_image'"
|
sh "make -j${env.NPROC} LOG_LEVEL=TRACE NIMFLAGS='-d:NETWORK_TYPE=libp2p -d:testnet_servers_image'"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -27,8 +27,8 @@ MASTER_NODE=$(( TOTAL_NODES - 1 ))
|
|||||||
|
|
||||||
# You can run a mixed simulation of daemon and native libp2p nodes
|
# You can run a mixed simulation of daemon and native libp2p nodes
|
||||||
# by changing the variables below:
|
# by changing the variables below:
|
||||||
NETWORK_TYPE=libp2p
|
NETWORK_TYPE=${NETWORK_TYPE:-"libp2p"}
|
||||||
BOOTSTRAP_NODE_NETWORK_TYPE=libp2p
|
BOOTSTRAP_NODE_NETWORK_TYPE=${BOOTSTRAP_NODE_NETWORK_TYPE:-"libp2p"}
|
||||||
|
|
||||||
SIMULATION_DIR="${SIM_ROOT}/data"
|
SIMULATION_DIR="${SIM_ROOT}/data"
|
||||||
METRICS_DIR="${SIM_ROOT}/prometheus"
|
METRICS_DIR="${SIM_ROOT}/prometheus"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user