34 lines
742 B
Groovy
34 lines
742 B
Groovy
@Library('cadoles@gitea-release') _
|
|
|
|
pipeline {
|
|
agent {
|
|
dockerfile {
|
|
filename 'Dockerfile'
|
|
dir 'misc/ci'
|
|
}
|
|
}
|
|
|
|
stages {
|
|
stage('Release') {
|
|
steps {
|
|
script {
|
|
sh 'ARCH_TARGETS="amd64 arm arm64" make release'
|
|
|
|
def attachments = sh(returnStdout: true, script: 'find release -maxdepth 1 -type f').split(' ')
|
|
gitea.release('forge-jenkins', 'Cadoles', 'go-http-peering', [
|
|
'attachments': attachments
|
|
])
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
post {
|
|
always {
|
|
script {
|
|
cleanWs()
|
|
}
|
|
}
|
|
}
|
|
}
|