json-parser/Jenkinsfile

19 lines
248 B
Plaintext
Raw Normal View History

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