Skip to content

Commit ce63537

Browse files
PSMDB. Updating parameters for multijob (#3688)
1 parent 096528a commit ce63537

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

psmdb/psmdb-multijob-testing.groovy

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pipeline {
1212
}
1313
parameters {
1414
choice(name: 'CLOUD', choices: [ 'Hetzner','AWS' ], description: 'Cloud infra for build')
15-
string(name: 'PSMDB_VERSION', defaultValue: '7.0.26-14', description: 'PSMDB Version')
15+
string(name: 'PSMDB_VERSION', defaultValue: '7.0.26', description: 'PSMDB Version')
1616
string(name: 'PSMDB_RELEASE', defaultValue: '17', description: 'PSMDB Release')
1717
}
1818
options {
@@ -22,13 +22,14 @@ pipeline {
2222
stage ('Run functional tests on tarballs') {
2323
steps {
2424
script {
25-
build job: 'psmdb-tarball-functional', propagate: false, wait: true, parameters: [ string(name: 'PSMDB_VERSION', value: params.PSMDB_VERSION), string(name: 'TESTING_BRANCH', value: "main") ]
25+
def version = params.PSMDB_VERSION + '-' + params.PSMDB_RELEASE
26+
build job: 'psmdb-tarball-functional', propagate: false, wait: true, parameters: [ string(name: 'PSMDB_VERSION', value: version), string(name: 'TESTING_BRANCH', value: "main") ]
2627
}
2728
}
2829
}
2930
stage ('Run functional tests on packages') {
3031
steps {
31-
build job: 'psmdb-parallel', parameters: [ string(name: 'REPO', value: "testing"), string(name: 'PSMDB_VERSION', value: params.PSMDB_VERSION.replaceFirst(/-\d+$/, '') ), string(name: 'ENABLE_TOOLKIT', value: "false"), string(name: 'TESTING_BRANCH', value: "main") ]
32+
build job: 'psmdb-parallel', parameters: [ string(name: 'REPO', value: "testing"), string(name: 'PSMDB_VERSION', value: params.PSMDB_VERSION), string(name: 'ENABLE_TOOLKIT', value: "false"), string(name: 'TESTING_BRANCH', value: "main") ]
3233
}
3334
}
3435
stage ('Build docker images and check for vulnerabilities') {

0 commit comments

Comments
 (0)