From: Michael Jeanson Date: Tue, 1 Feb 2022 16:28:39 +0000 (-0500) Subject: jjb: integration: remove dot in recordIssues id X-Git-Url: https://git.liburcu.org/?a=commitdiff_plain;h=0fa108e12d93911acae9d5fb27ae7d8d5845b393;p=lttng-ci.git jjb: integration: remove dot in recordIssues id IDs for the recordIssues are now restricted to '[a-z0-9][a-z0-9-_]*', remove the dots to make Jenkins happy. Change-Id: I8beeb17de76a183c2ebe90c6c9e57a95a9235c7b Signed-off-by: Michael Jeanson --- diff --git a/pipelines/integration/ust-2.12-lower-urcu_testsuite.groovy b/pipelines/integration/ust-2.12-lower-urcu_testsuite.groovy index 1919dd3..03f7ba9 100644 --- a/pipelines/integration/ust-2.12-lower-urcu_testsuite.groovy +++ b/pipelines/integration/ust-2.12-lower-urcu_testsuite.groovy @@ -246,7 +246,7 @@ pipeline { post { always { - recordIssues skipBlames: true, tools: [gcc(id: "gcc-ust-2.12")] + recordIssues skipBlames: true, tools: [gcc(id: "gcc-ust-212")] step([$class: 'TapPublisher', testResults: 'tap/**/*.log', verbose: true, failIfNoResults: true, failedTestsMarkBuildAsFailure: true, planRequired: true]) archiveArtifacts artifacts: 'tap/**', fingerprint: false } @@ -370,7 +370,7 @@ pipeline { post { always { - recordIssues skipBlames: true, tools: [gcc(id: "gcc-ust-2.13")] + recordIssues skipBlames: true, tools: [gcc(id: "gcc-ust-213")] step([$class: 'TapPublisher', testResults: 'tap/**/*.log', verbose: true, failIfNoResults: true, failedTestsMarkBuildAsFailure: true, planRequired: true]) archiveArtifacts artifacts: 'tap/**', fingerprint: false }