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