diff --git a/Jenkinsfile b/Jenkinsfile index c13ec9a..8fcb867 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" } } } diff --git a/test.sh b/test.sh old mode 100644 new mode 100755