From 12246dce4907c8cae239aea77234b1084a490feb Mon Sep 17 00:00:00 2001 From: Igor Sirotin Date: Thu, 5 Sep 2024 20:47:44 +0100 Subject: [PATCH] fix_: INTEGRATION_TESTS_REPORT_CODECOV true --- _assets/ci/Jenkinsfile.tests-rpc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_assets/ci/Jenkinsfile.tests-rpc b/_assets/ci/Jenkinsfile.tests-rpc index 1e751aa48..cc7c19d16 100644 --- a/_assets/ci/Jenkinsfile.tests-rpc +++ b/_assets/ci/Jenkinsfile.tests-rpc @@ -11,7 +11,7 @@ pipeline { description: 'Name of branch to build.' ) booleanParam( - name: 'UNIT_TEST_REPORT_CODECOV', + name: 'INTEGRATION_TESTS_REPORT_CODECOV', defaultValue: true, description: 'Should the job report test coverage to Codecov?' ) @@ -35,8 +35,8 @@ pipeline { PKG_URL = "${currentBuild.absoluteUrl}/consoleText" /* Hack-fix for params not being set in env on first job run. */ - BRANCH = "${params.BRANCH}" - UNIT_TEST_REPORT_CODECOV = "${params.UNIT_TEST_REPORT_CODECOV}" + BRANCH = "${params.BRANCH}" + INTEGRATION_TESTS_REPORT_CODECOV = "${params.INTEGRATION_TESTS_REPORT_CODECOV}" } stages {