Update 'Jenkinsfile'

This commit is contained in:
Mitchell Marino 2022-11-27 19:43:35 -06:00
parent 21429b41ff
commit 821157ee2a

4
Jenkinsfile vendored
View File

@ -4,13 +4,13 @@ pipeline {
stages {
stage('Build') {
steps {
echo 'Building..'
sh 'cargo b --release'
archiveArtifacts artifacts: '/target/school_app_api', fingerprint: true
}
}
stage('Test') {
steps {
echo 'Testing..'
sh 'cargo test'
}
}
stage('Deploy') {