Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
10ef5379d1 | |||
bb35916fb2 | |||
61c39daf55 | |||
1a7cc49f35 |
26
Jenkinsfile
vendored
26
Jenkinsfile
vendored
@ -1,10 +1,16 @@
|
||||
pipeline {
|
||||
|
||||
agent {
|
||||
docker { image 'rbehzadan/golang_goreleaser:1.22.1-1.24.0' }
|
||||
}
|
||||
|
||||
|
||||
environment {
|
||||
GITEA_TOKEN = credentials('git.behzadan.ir')
|
||||
NOTIFY_TOKEN = credentials('notify_events_sinic_alert')
|
||||
}
|
||||
|
||||
|
||||
stages {
|
||||
|
||||
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!',
|
||||
token: "${env.NOTIFY_TOKEN}"
|
||||
}
|
||||
|
||||
failure {
|
||||
echo 'Build failed!'
|
||||
notifyEvents title: 'jenkins.home.behzadan.ir/$JOB_NAME/$BUILD_ID',
|
||||
message: 'Build failed!',
|
||||
token: "${env.NOTIFY_TOKEN}"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user