diff --git a/Jenkinsfile b/Jenkinsfile index fe23bd4..16dc190 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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!', 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 + } + + } + } diff --git a/VERSION b/VERSION index 90a27f9..af0b7dd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.5 +1.0.6