Files
intranet.valorantdigital.com/Jenkinsfile
Your Name 77a03b026c
All checks were successful
code.valorantdigital.com-projectgaruda/portal.intranet.valorantdigital.com/pipeline/head This commit looks good
automated push from the terminal
2025-09-12 21:53:15 -04:00

56 lines
836 B
Groovy

pipeline {
agent none
options {
disableConcurrentBuilds(abortPrevious: true)
buildDiscarder(logRotator(numToKeepStr: '1'))
}
stages {
stage('docker compose build') {
agent {
label "sian"
}
steps {
dir('.') {
sh 'docker compose build'
}
}
}
stage('docker compose push') {
agent {
label "sian"
}
steps {
dir('.') {
sh 'docker compose push'
}
}
}
}}