engage_earn_api/Jenkinsfile
2022-11-27 19:38:37 -06:00

23 lines
447 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
archiveArtifacts artifacts: '/target/school_app_api', fingerprint: true
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}