diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..5689e39 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,20 @@ +pipeline { + agent { + docker { + image 'golang:latest' + label 'docker-build' + } + } + stages { + stage('build') { + steps { + sh 'go build' + } + post { + success { + archiveArtifacts artifacts: 'pnut-bridge', fingerprint: true + } + } + } + } +}