Make it so Jenkins can actually build
Some checks failed
timw4mail/gilo/pipeline/head There was a failure building this commit

This commit is contained in:
Timothy Warren 2021-03-30 20:49:53 -04:00
parent 39ebce63dc
commit 098cbbe3ed

6
Jenkinsfile vendored
View File

@ -6,6 +6,12 @@ pipeline {
}
}
stages {
stage('Setup') {
steps {
sh "mkdir .cache"
sh "chmod 777 .cache"
}
}
stage('Build') {
steps {
sh "go build"