Initial commit
Some checks are pending
clarama/eo-services-client/pipeline/head Build queued...

This commit is contained in:
mortons.site
2022-10-17 19:04:23 -05:00
commit df9ea7a9d5
5 changed files with 66 additions and 0 deletions

27
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,27 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'docker buildx bake --progress=plain'
}
}
stage('Deploy') {
steps {
sh 'docker buildx bake --progress=plain --push'
}
}
}
post {
always {
sh 'docker system prune --force --volumes'
cleanWs(cleanWhenNotBuilt: true,
deleteDirs: true,
disableDeferredWipeout: true,
notFailBuild: true)
}
}
}