engage_earn_api/Jenkinsfile
2022-11-27 19:43:35 -06:00

23 lines
451 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'cargo b --release'
archiveArtifacts artifacts: '/target/school_app_api', fingerprint: true
}
}
stage('Test') {
steps {
sh 'cargo test'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}