Add Jenkinsfile
All checks were successful
Cadoles/go-http-peering/pipeline/head This commit looks good

This commit is contained in:
2022-09-05 10:56:41 +02:00
parent b826f7de2d
commit 932aa46a18
3 changed files with 39 additions and 1 deletions

33
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,33 @@
@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()
}
}
}
}