lighthouse/Jenkinsfile

11 lines
164 B
Plaintext
Raw Normal View History

2019-01-09 08:44:37 +00:00
pipeline {
agent { dockerfile true }
stages {
stage('build') {
steps {
sh 'cargo build'
}
}
}
}