Files
yankee-gnome-twitch-api/Jenkinsfile
Software Shinobi 22c4507400
All checks were successful
code.softwareshinobi.com - yankee/yankee-gnome-twitch-api/pipeline/head This commit looks good
adding jenkins file
2025-03-07 15:22:13 -05:00

55 lines
842 B
Groovy
Executable File

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'
}
}
}
}}