All checks were successful
code.softwareshinobi.com - yankee/yankee-desktop-remix/pipeline/head This commit looks good
55 lines
842 B
Groovy
Executable File
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'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}}
|