feat(ci): reuse build node to speed up compilation

This commit is contained in:
andreas 2019-05-13 21:41:15 +02:00
parent 77b838b397
commit 155ffa4517

1
Jenkinsfile vendored
View File

@ -3,6 +3,7 @@ pipeline {
stages { stages {
stage('build') { stage('build') {
steps { steps {
reuseNode true
sh 'cargo build' sh 'cargo build'
} }
} }