fix_: Jenkinsfile

This commit is contained in:
Igor Sirotin 2024-09-05 20:33:55 +01:00
parent e26d13ab45
commit a7466f5644
No known key found for this signature in database
GPG Key ID: 425E227CAAB81F95
1 changed files with 10 additions and 12 deletions

View File

@ -41,18 +41,16 @@ pipeline {
stages { stages {
stage('RPC Tests') { stage('RPC Tests') {
withCredentials([ steps { script {
string( withCredentials([
credentialsId: 'codeclimate-test-reporter-id', string(
variable: 'CC_TEST_REPORTER_ID' credentialsId: 'codecov-repository-upload-token',
), variable: 'CODECOV_TOKEN'
string( ),
credentialsId: 'codecov-repository-upload-token', ]) {
variable: 'CODECOV_TOKEN' nix.shell('make run-integration-tests', pure: false)
), }
]) { } }
nix.shell('make run-integration-tests', pure: false)
}
} }
} // stages } // stages