Skip to content

Commit d55e626

Browse files
rdegnanOlegDokuka
authored andcommitted
Fix protobuf version to 3.6.1
(cherry picked from commit 2b8ef61)
1 parent 40a9d6a commit d55e626

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,12 @@ jobs:
2020
- LDFLAGS="/usr/local/lib/libprotobuf.a /usr/local/lib/libprotoc.a"
2121
before_install:
2222
- brew update
23+
- pushd $(brew --repo)/Library/Taps/homebrew/homebrew-core
24+
- git checkout 25a1892 Formula/protobuf.rb
2325
- EDITOR="sed -i '' 's/system \".\/configure\",/system \".\/configure\", \"--disable-shared\",/g'"
2426
brew edit protobuf
2527
- brew install protobuf
28+
- popd
2629
script: "./ci/travis.sh"
2730
before_cache:
2831
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock

rsocket-rpc-metrics-idl/build.gradle

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
plugins {
2-
id 'com.google.protobuf' version '0.8.6'
2+
id 'com.google.protobuf' version '0.8.8'
33
}
44

55
description = 'RSocket RPC Metrics IDL'
66

77
protobuf {
8-
protoc {
9-
artifact = 'com.google.protobuf:protoc'
10-
}
118
generateProtoTasks {
129
all().each { task ->
1310
task.enabled = false

rsocket-rpc-protobuf-idl/build.gradle

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
plugins {
2-
id 'com.google.protobuf' version '0.8.6'
2+
id 'com.google.protobuf' version '0.8.8'
33
}
44

55
description = 'RSocket RPC Protobf IDL'
66

77
protobuf {
8-
protoc {
9-
artifact = "com.google.protobuf:protoc"
10-
}
118
generateProtoTasks {
129
all().each { task ->
1310
task.enabled = false

0 commit comments

Comments
 (0)