morgan.mcmillian.dev/Jenkinsfile

33 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-11-11 00:14:22 +00:00
pipeline {
2023-11-11 00:20:31 +00:00
agent { label 'ansible' }
2023-11-11 00:14:22 +00:00
environment {
CHAT = "morgan@mcmillian.dev"
MAIL = "morgan@mcmillian.dev"
ANSIBLE_HOST_KEY_CHECKING = "False"
}
stages {
stage('Build website') {
steps {
sh 'git submodule update --init'
sh 'hugo'
}
}
stage('Execute playbook') {
steps {
ansiblePlaybook(playbook: "main.yaml", inventory: "hosts.ini", credentialsId: "igor")
}
post {
success {
jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Deploy Succeeded', notifySuspects: true, targets: "${CHAT}"
}
failure {
jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Deploy Failed', notifySuspects: true, targets: "${CHAT}"
mail to: "${MAIL}",
subject: "Deploy Failed: ${currentBuild.fullDisplayName}",
body: "Something is wrong with ${env.BUILD_URL}"
}
}
}
}
}