json-parser/Jenkinsfile

15 lines
188 B
Plaintext
Raw Normal View History

2020-02-12 09:54:14 -05:00
pipeline {
agent {
docker {
image 'rust:latest'
}
}
stages {
stage('Check') {
sh "cargo check"
}
stage('Test') {
sh "cargo test"
}
}
}