automated terminal push
All checks were successful
code.softwareshinobi.com - yankee/yankee-desktop-remix/pipeline/head This commit looks good

This commit is contained in:
Software Shinobi
2025-03-07 15:25:45 -05:00
parent ab9b3d9904
commit 7559c77cae
2 changed files with 122 additions and 0 deletions

54
Jenkinsfile vendored Executable file
View File

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