Compare commits
No commits in common. "main" and "v1.0.1" have entirely different histories.
34
Jenkinsfile
vendored
34
Jenkinsfile
vendored
@ -1,17 +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('Build') {
|
||||
steps {
|
||||
sh 'make build'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Test') {
|
||||
steps {
|
||||
@ -21,9 +20,6 @@ pipeline {
|
||||
|
||||
stage('Release') {
|
||||
steps {
|
||||
sh 'git config --global user.email "rbehzadan@gmail.com"'
|
||||
sh 'git config --global user.name "Reza Behzadan"'
|
||||
sh 'git tag -a v$(cat VERSION) -m "v$(cat VERSION)"'
|
||||
sh 'goreleaser release'
|
||||
}
|
||||
}
|
||||
@ -35,24 +31,4 @@ 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