install protobuf; make test script executable

This commit is contained in:
Kegan Myers 2020-04-16 00:08:11 -05:00
parent 865c570e41
commit c21629edba
2 changed files with 3 additions and 1 deletions

4
Jenkinsfile vendored
View File

@ -6,7 +6,9 @@ pipeline {
checkout scm
script {
docker.image("golang:1.14-alpine").inside {
sh './test.sh'
sh "apk add --no-cache protobuf-dev"
sh "go get -u github.com/golang/protobuf/protoc-gen-go"
sh "./test.sh"
}
}
}

0
test.sh Normal file → Executable file
View File