Add missing mixnet test to integration runs (#414)

This commit is contained in:
gusto 2023-09-18 17:10:05 +03:00 committed by GitHub
parent d672be3bb0
commit c860b632dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 6 deletions

View File

@ -39,13 +39,24 @@ pipeline {
} }
} }
stages { stages {
stage('BuildAndTest') { stage('Tests') {
steps { options {
script { lock('sync-integration-${env.GIT_COMMIT}')
/* To prevent rebuilding node for each test, tests are defined here */ }
def tests = ['ten_nodes_happy', 'two_nodes_happy', 'ten_nodes_one_down'] stages {
stage("BuildAndTest") {
steps {
script {
/* To prevent rebuilding node for each test, tests are defined here */
def tests = ['ten_nodes_happy', 'two_nodes_happy', 'ten_nodes_one_down']
runBuildAndTestsForFeature(FEATURE, tests) if (FEATURE == 'libp2p') {
tests.add('mixnet')
}
runBuildAndTestsForFeature(FEATURE, tests)
}
}
} }
} }
} }