feat(ci): Add Jenkinsfile

This commit is contained in:
andreas 2019-05-13 20:24:15 +02:00
parent ed2b1808b6
commit 4ef522ebd2

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent { docker { image 'rust' } }
stages {
stage('build') {
steps {
sh 'cargo build'
}
}
}
}