Morgan McMillian
592ed4e8c7
All checks were successful
thrrgilag/prosody-docker/pipeline/head This commit looks good
29 lines
1.3 KiB
Groovy
29 lines
1.3 KiB
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('Build docker image') {
|
|
agent { label 'docker-build' }
|
|
environment {
|
|
TAG = "${env.BRANCH_NAME == "main" ? "latest" : env.BRANCH_NAME}"
|
|
}
|
|
steps {
|
|
// mattermostSend "Docker build started - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
|
|
jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Build Started', targets: '...'
|
|
script {
|
|
docker.withRegistry('https://git.dreamfall.space/thrrgilag', 'thrrgilag-forgejo-pkg') {
|
|
def customImage = docker.build("git.dreamfall.space/thrrgilag/prosody:${TAG}")
|
|
customImage.push()
|
|
}
|
|
}
|
|
}
|
|
// post {
|
|
// success {
|
|
// mattermostSend color: "good", message: "Docker build success - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
|
|
// }
|
|
// failure {
|
|
// mattermostSend color: "danger", message: "Docker build failure - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
|
|
// }
|
|
// }
|
|
}
|
|
}
|
|
}
|