Add 'jenkinsfile'

This commit is contained in:
Mitchell Marino
2022-11-27 17:26:42 -06:00
parent 2ebf5a81f3
commit 17c794b519
+17
View File
@@ -0,0 +1,17 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'cargo build'
}
}
stage('Test') {
steps {
sh 'cargo test'
}
}
}
}