lighthouse/Jenkinsfile
2019-02-07 17:39:47 +11:00

11 lines
164 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('build') {
steps {
sh 'cargo build'
}
}
}
}