go-temper/Jenkinsfile
2021-10-30 19:30:24 -05:00

74 lines
2.1 KiB
Groovy

// cmake '-DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-mingw.cmake' .
def label = "jenkins-${UUID.randomUUID().toString()}"
def repository = "registry.c.test-chamber-13.lan"
podTemplate(
label: label,
name: "pipeline-worker",
yaml: """---
apiVersion: v1
kind: Pod
metadata:
name: pipeline-worker
spec:
containers:
- name: compile
imagePullPolicy: Always
image: ${repository}/dockerhub/library/golang:latest
tty: true
command:
- /bin/cat
""") {
node (label) {
def workspace = pwd()
container("compile") {
stage ("Pull Local Repo") {
checkout([
$class: "GitSCM",
branches: [
[
name: "refs/remotes/origin/main",
],
],
userRemoteConfigs: [
[
url: "ssh://git@gitea.smoothnet.org:31822/nhyatt/go-temper.git",
credentialsId: "Gitea-Read-Only-Token",
],
],
extensions: [
[
$class: "CloneOption",
shallow: true,
],
[
$class: "CheckoutOption",
timeout: 2,
],
],
])
}
stage("Build go-temper") {
container("compile") {
sh """
apt update
apt install --no-install-recommends libusb-1.0-0-dev gcc g++
GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -o go-temper ./cmd/go-temper
"""
}
}
stage ("Store Artifacts") {
archiveArtifacts (artifacts: "go-temper",
fingerprint: true,
allowEmptyArchive: false,
onlyIfSuccessful: true,
)
}
}
}
}