move build host
Some checks failed
thrrgilag/clacksme/pipeline/head There was a failure building this commit
git.dreamfall.space/clacksme/pipeline/head This commit looks good

This commit is contained in:
Morgan McMillian 2024-09-08 12:21:02 -07:00
parent c17c5b61c4
commit 6403aa6dfc

6
Jenkinsfile vendored
View file

@ -1,7 +1,7 @@
pipeline { pipeline {
agent none agent none
environment { environment {
CHAT = "devel@conference.mcmillian.dev" CHAT = "spacenerdmo@clacks.network"
MAIL = "morgan@mcmillian.dev" MAIL = "morgan@mcmillian.dev"
} }
stages { stages {
@ -13,8 +13,8 @@ pipeline {
steps { steps {
jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Build Started', notifySuspects: true, targets: "${CHAT}" jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Build Started', notifySuspects: true, targets: "${CHAT}"
script { script {
docker.withRegistry('https://git.dreamfall.space/thrrgilag', 'thrrgilag-forgejo-pkg') { docker.withRegistry('https://git.dreamfall.space/spacenerdmo', 'spacenerdmo-pkg-pub') {
def customImage = docker.build("git.dreamfall.space/thrrgilag/clacksme:${TAG}") def customImage = docker.build("git.dreamfall.space/spacenerdmo/clacksme:${TAG}")
customImage.push() customImage.push()
} }
} }