Files
python-jenkins-project/Jenkinsfile

56 lines
840 B
Plaintext
Raw Permalink Normal View History

2025-03-04 18:49:45 +00:00
pipeline {
2025-03-04 23:23:26 +00:00
2025-03-05 03:37:25 +00:00
agent none
2025-03-04 23:23:26 +00:00
2025-03-05 03:37:25 +00:00
options {
disableConcurrentBuilds(abortPrevious: true)
buildDiscarder(logRotator(numToKeepStr: '1'))
}
2025-03-04 23:36:29 +00:00
stages {
2025-03-05 03:37:25 +00:00
stage('docker compose build') {
agent {
label "xochi"
2025-03-04 18:49:45 +00:00
}
2025-03-04 23:39:52 +00:00
2025-03-04 18:49:45 +00:00
steps {
2025-03-04 23:39:52 +00:00
2025-03-05 03:37:25 +00:00
dir('.') {
2025-03-04 23:39:52 +00:00
2025-03-05 03:37:25 +00:00
sh 'docker compose build'
}
2025-03-04 23:39:52 +00:00
2025-03-05 03:37:25 +00:00
}
2025-03-04 23:39:52 +00:00
2025-03-05 03:37:25 +00:00
}
2025-03-04 23:39:52 +00:00
2025-03-05 03:37:25 +00:00
stage('docker compose push') {
2025-03-04 23:39:52 +00:00
2025-03-05 03:37:25 +00:00
agent {
label "xochi"
2025-03-04 18:49:45 +00:00
}
2025-03-04 23:39:52 +00:00
2025-03-04 18:49:45 +00:00
steps {
2025-03-04 23:39:52 +00:00
2025-03-05 03:37:25 +00:00
dir('.') {
2025-03-04 23:39:52 +00:00
2025-03-05 03:37:25 +00:00
sh 'docker compose push'
}
2025-03-04 23:39:52 +00:00
2025-03-04 18:49:45 +00:00
}
2025-03-04 23:39:52 +00:00
2025-03-05 03:37:25 +00:00
}
}}