From f20ebf5cd10043fe837c6ba1825d3a6670e3bdb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Tue, 10 Mar 2020 18:01:04 +0100 Subject: [PATCH] CI: add testnet0 test to Jenkins --- Jenkinsfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index dc4f333ab..1cef94736 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,11 +29,12 @@ def runStages() { stage("Test suite") { sh "make -j${env.NPROC} DISABLE_TEST_FIXTURES_SCRIPT=1 test" } - //if ("${NODE_NAME}" ==~ /linux.*/) { - //stage("testnet finalization") { - //sh "scripts/launch_local_testnet.sh --testnet 1 --disable-htop -- --verify-finalization --stop-at-epoch=5" - //} - //} + if ("${NODE_NAME}" ==~ /linux.*/) { + stage("testnet finalization") { + sh "./scripts/launch_local_testnet.sh --testnet 0 --nodes 4 --disable-htop -- --verify-finalization --stop-at-epoch=5" + //sh "./scripts/launch_local_testnet.sh --testnet 1 --disable-htop -- --verify-finalization --stop-at-epoch=5" + } + } } ) }