fixup! Add a simple Jenkinsfile

This commit is contained in:
R Tyler Croy 2024-04-21 15:32:43 +00:00
parent 4b41913480
commit b434c7e50c
1 changed files with 9 additions and 3 deletions

12
Jenkinsfile vendored
View File

@ -9,13 +9,19 @@ pipeline {
stages {
stage('Checkout') {
checkout scm
steps {
checkout scm
}
}
stage('Build') {
sh 'cargo build'
steps {
sh 'cargo build'
}
}
stage('Test') {
sh 'cargo test'
steps {
sh 'cargo test'
}
}
}
}