Add notifications

This commit is contained in:
Reza Behzadan 2024-03-31 15:27:02 +03:30
parent d85d9540ae
commit 1a7cc49f35
2 changed files with 27 additions and 1 deletions

26
Jenkinsfile vendored
View File

@ -1,10 +1,16 @@
pipeline { pipeline {
agent { agent {
docker { image 'rbehzadan/golang_goreleaser:1.22.1-1.24.0' } docker { image 'rbehzadan/golang_goreleaser:1.22.1-1.24.0' }
} }
environment { environment {
GITEA_TOKEN = credentials('git.behzadan.ir') GITEA_TOKEN = credentials('git.behzadan.ir')
NOTIFY_TOKEN = credentials('notify_events_sinic_alert')
} }
stages { stages {
stage('Test') { stage('Test') {
@ -29,4 +35,24 @@ pipeline {
} }
} }
post {
success {
echo 'Build succeeded!'
notifyEvents title: 'jenkins.home.behzadan.ir/$JOB_NAME/$BUILD_ID', message: 'Build succeeded!', priority: 'NORMAL', token: '$NOTIFY_TOKEN'
}
failure {
echo 'Build failed!'
notifyEvents title: 'jenkins.home.behzadan.ir/$JOB_NAME/$BUILD_ID', message: 'Build failed!', priority: 'NORMAL', token: '$NOTIFY_TOKEN'
}
always {
// Cleanup or notifications can go here
}
}
} }

View File

@ -1 +1 @@
1.0.5 1.0.6