Update Jenkinsfile
This commit is contained in:
parent
cbf413f468
commit
712f627a95
48
Jenkinsfile
vendored
48
Jenkinsfile
vendored
@ -2,11 +2,59 @@ pipeline {
|
|||||||
agent {
|
agent {
|
||||||
docker { image 'golang:1.22.1' }
|
docker { image 'golang:1.22.1' }
|
||||||
}
|
}
|
||||||
|
environment {
|
||||||
|
GITEA_API_TOKEN = credentials('git.behzadan.ir')
|
||||||
|
}
|
||||||
stages {
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
sh 'make build'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
steps {
|
steps {
|
||||||
sh 'make test'
|
sh 'make test'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('Package') {
|
||||||
|
steps {
|
||||||
|
sh 'make package'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Upload Release') {
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
def repoOwner = 'reza'
|
||||||
|
def repoName = 'go-hello-world'
|
||||||
|
def tagName = 'v1.0.0'
|
||||||
|
def releaseTitle = 'v1.0.0'
|
||||||
|
def releaseDescription = 'v1.0.0'
|
||||||
|
def zipFile = 'hello-world.zip'
|
||||||
|
|
||||||
|
def createReleaseCmd = """
|
||||||
|
curl -X POST -H "Content-Type: application/json" -H "Authorization: token ${GITEA_API_TOKEN}" \\
|
||||||
|
-d '{ "tag_name": "${tagName}", "target_commitish": "main", "name": "${releaseTitle}", "body": "${releaseDescription}", "draft": false, "prerelease": false }' \\
|
||||||
|
"https://git.behzadan.ir/api/v1/repos/${repoOwner}/${repoName}/releases"
|
||||||
|
"""
|
||||||
|
sh createReleaseCmd
|
||||||
|
|
||||||
|
def uploadAssetCmd = """
|
||||||
|
curl -X POST -H "Authorization: token ${GITEA_API_TOKEN}" -H "Content-Type: application/zip" \\
|
||||||
|
--data-binary @${zipFile} \\
|
||||||
|
"https://git.behzadan.ir/api/v1/repos/${repoOwner}/${repoName}/releases/${tagName}/assets?name=${zipFile}"
|
||||||
|
"""
|
||||||
|
sh uploadAssetCmd
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Cleanup') {
|
||||||
|
steps {
|
||||||
|
sh 'make clean'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user