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