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:51:08 -04:00
parent 098cbbe3ed
commit 2c5eaa3291

4
Jenkinsfile vendored
View File

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