Attempt to automate tests with Jenkins
Some checks failed
timw4mail/json-parser/master There was a failure building this commit
Some checks failed
timw4mail/json-parser/master There was a failure building this commit
This commit is contained in:
parent
41a33ba66f
commit
d512cd10c2
15
Jenkinsfile
vendored
Normal file
15
Jenkinsfile
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
pipeline {
|
||||
agent {
|
||||
docker {
|
||||
image 'rust:latest'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('Check') {
|
||||
sh "cargo check"
|
||||
}
|
||||
stage('Test') {
|
||||
sh "cargo test"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user