fix_: Jenkinsfile
This commit is contained in:
parent
e26d13ab45
commit
a7466f5644
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue