Add Jenkinsfile
Cadoles/go-http-peering/pipeline/head This commit looks good Details

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

43
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,43 @@
@Library('cadoles@gitea-release') _
pipeline {
agent {
dockerfile {
filename 'Dockerfile'
dir 'misc/ci'
}
}
stages {
stage('Release') {
steps {
script {
def isPrerelease = true
try {
sh(script: "git describe --exact-match ${GIT_COMMIT}")
isPrerelease = false
} catch (err) {
println "Could not find tag associated with commit '${GIT_COMMIT}' ! Generating a prerelease..."
}
sh 'ARCH_TARGETS="amd64 arm arm64" make release'
def attachments = sh(returnStdout: true, script: 'ls release/*.tar.gz').split(' ')
gitea.release('forge-jenkins', 'Cadoles', 'go-http-peering', [
'attachments': attachments,
'isDraft': false,
'isPrerelease': isPrerelease,
])
}
}
}
}
post {
always {
script {
cleanWs()
}
}
}
}

View File

@ -30,6 +30,6 @@ doc:
godoc -http=:6060
bin/keygen:
go build -o bin/keygen ./cmd/keygen
CGO_ENABLED=0 go build -o bin/keygen ./cmd/keygen
.PHONY: test lint doc sequence-diagram bin/keygen release

5
misc/ci/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM golang:1.19
RUN apt-get update && apt-get install -y make upx-ucl curl ca-certificates bash jq
RUN curl -k https://forge.cadoles.com/Cadoles/Jenkins/raw/branch/master/resources/com/cadoles/common/add-letsencrypt-ca.sh | bash