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,12 +39,21 @@ pipeline {
}
}
stages {
stage('BuildAndTest') {
stage('Tests') {
options {
lock('sync-integration-${env.GIT_COMMIT}')
}
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']
if (FEATURE == 'libp2p') {
tests.add('mixnet')
}
runBuildAndTestsForFeature(FEATURE, tests)
}
}
@ -53,6 +62,8 @@ pipeline {
}
}
}
}
}
post {
failure {