Fix params for release upgrade
Related-Prod: PROD-36426
Change-Id: I6c4f8611b713df2b07beddec52f1152c7974a03f
diff --git a/jobs/pipelines/deploy-cicd-and-run-tests.groovy b/jobs/pipelines/deploy-cicd-and-run-tests.groovy
index 1872451..f72b28f 100644
--- a/jobs/pipelines/deploy-cicd-and-run-tests.groovy
+++ b/jobs/pipelines/deploy-cicd-and-run-tests.groovy
@@ -220,7 +220,6 @@
string(name: 'TCP_QA_REFS', value: env.TCP_QA_REFS),
string(name: 'PASSED_STEPS', value: steps),
string(name: 'TEMPEST_TEST_SUITE_NAME', value: env.TEMPEST_TEST_SUITE_NAME),
- string(name: 'TEMPEST_PATTERN', value: env.TEMPEST_PATTERN),
string(name: 'NODE', value: "openstack_slave_${env.LAB_CONFIG_NAME}")
],
wait: false,
diff --git a/jobs/pipelines/run-test-scenarios.groovy b/jobs/pipelines/run-test-scenarios.groovy
index c03999b..f2f3e74 100644
--- a/jobs/pipelines/run-test-scenarios.groovy
+++ b/jobs/pipelines/run-test-scenarios.groovy
@@ -53,7 +53,7 @@
}
} // stage("Run tests")
- if(currentBuild.result == 'SUCCESS'){
+ if(currentBuild.result != 'FAILURE'){
stage("Archive all xml reports") {
dir("${env.slave_workdir }") {
archiveArtifacts artifacts: "**/*.xml,**/*.log"