Morgan McMillian
9f0ce0b66a
All checks were successful
dreamfall/pnut-bridge/pipeline/head This commit looks good
23 lines
464 B
Groovy
23 lines
464 B
Groovy
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'golang:latest'
|
|
label 'docker-build'
|
|
}
|
|
}
|
|
environment {
|
|
XDG_CACHE_HOME = '/tmp/.cache'
|
|
}
|
|
stages {
|
|
stage('build') {
|
|
steps {
|
|
sh 'go build'
|
|
}
|
|
post {
|
|
success {
|
|
archiveArtifacts artifacts: 'pnut-bridge', fingerprint: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|