From a7466f56444849ce2a97be03896bb625c3350b2d Mon Sep 17 00:00:00 2001 From: Igor Sirotin Date: Thu, 5 Sep 2024 20:33:55 +0100 Subject: [PATCH] fix_: Jenkinsfile --- _assets/ci/Jenkinsfile.tests-rpc | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/_assets/ci/Jenkinsfile.tests-rpc b/_assets/ci/Jenkinsfile.tests-rpc index 51b2ce6e1..1e751aa48 100644 --- a/_assets/ci/Jenkinsfile.tests-rpc +++ b/_assets/ci/Jenkinsfile.tests-rpc @@ -41,18 +41,16 @@ pipeline { stages { stage('RPC Tests') { - withCredentials([ - string( - credentialsId: 'codeclimate-test-reporter-id', - variable: 'CC_TEST_REPORTER_ID' - ), - string( - credentialsId: 'codecov-repository-upload-token', - variable: 'CODECOV_TOKEN' - ), - ]) { - nix.shell('make run-integration-tests', pure: false) - } + steps { script { + withCredentials([ + string( + credentialsId: 'codecov-repository-upload-token', + variable: 'CODECOV_TOKEN' + ), + ]) { + nix.shell('make run-integration-tests', pure: false) + } + } } } } // stages