switch to jenkins build
All checks were successful
thrrgilag/pnut-bridge/pipeline/head This commit looks good
All checks were successful
thrrgilag/pnut-bridge/pipeline/head This commit looks good
This commit is contained in:
parent
540257787a
commit
165683ee9f
1 changed files with 35 additions and 0 deletions
35
Jenkinsfile
vendored
Normal file
35
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
pipeline {
|
||||||
|
agent none
|
||||||
|
environment {
|
||||||
|
CHAT = "devel@conference.mcmillian.dev"
|
||||||
|
MAIL = "morgan@mcmillian.dev"
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('Build docker image') {
|
||||||
|
agent { label 'docker-build' }
|
||||||
|
environment {
|
||||||
|
TAG = "${env.BRANCH_NAME == "main" ? "latest" : env.BRANCH_NAME}"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Build Started', notifySuspects: true, targets: "${CHAT}"
|
||||||
|
script {
|
||||||
|
docker.withRegistry('https://git.dreamfall.space/thrrgilag', 'thrrgilag-forgejo-pkg') {
|
||||||
|
def customImage = docker.build("git.dreamfall.space/thrrgilag/pnut-bridge:${TAG}")
|
||||||
|
customImage.push()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
success {
|
||||||
|
jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Build Succeeded', notifySuspects: true, targets: "${CHAT}"
|
||||||
|
}
|
||||||
|
failure {
|
||||||
|
jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Build Failed', notifySuspects: true, targets: "${CHAT}"
|
||||||
|
mail to: "${MAIL}",
|
||||||
|
subject: "Build Failed: ${currentBuild.fullDisplayName}",
|
||||||
|
body: "Something is wrong with ${env.BUILD_URL}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue