test-dashboard
All checks were successful
gitea-lenape/dashboard-hw/pipeline/head This commit looks good

This commit is contained in:
jacqueskingram
2025-03-02 12:26:52 -05:00
parent 27be6ae90a
commit d79aa9b109
3 changed files with 117 additions and 0 deletions

55
Jenkinsfile vendored Executable file
View File

@@ -0,0 +1,55 @@
pipeline {
agent none
options {
disableConcurrentBuilds(abortPrevious: true)
buildDiscarder(logRotator(numToKeepStr: '1'))
}
stages {
stage('docker compose build') {
agent {
label "xochi"
}
steps {
dir('.') {
sh 'docker compose build'
}
}
}
stage('docker compose push') {
agent {
label "xochi"
}
steps {
dir('.') {
sh 'docker compose push'
}
}
}
}}