fix_: INTEGRATION_TESTS_REPORT_CODECOV true

This commit is contained in:
Igor Sirotin 2024-09-05 20:47:44 +01:00
parent a7466f5644
commit 12246dce49
No known key found for this signature in database
GPG Key ID: 425E227CAAB81F95

View File

@ -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 {