install protobuf; make test script executable
This commit is contained in:
parent
865c570e41
commit
c21629edba
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -6,7 +6,9 @@ pipeline {
|
||||||
checkout scm
|
checkout scm
|
||||||
script {
|
script {
|
||||||
docker.image("golang:1.14-alpine").inside {
|
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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue