1
0
Fork 0

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

This commit is contained in:
Timothy Warren 2021-03-30 20:49:53 -04:00
parent 39ebce63dc
commit 098cbbe3ed
1 changed files with 6 additions and 0 deletions

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"