Attempt to automate tests with Jenkins
timw4mail/json-parser/master There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2020-02-12 09:54:14 -05:00
parent 41a33ba66f
commit d512cd10c2
1 changed files with 15 additions and 0 deletions

15
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,15 @@
pipeline {
agent {
docker {
image 'rust:latest'
}
}
stages {
stage('Check') {
sh "cargo check"
}
stage('Test') {
sh "cargo test"
}
}
}