Skip to content

Commit 2b8ef61

Browse files
committed
Fix protobuf version to 3.6.1
1 parent e959f1b commit 2b8ef61

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
@@ -39,9 +39,12 @@ jobs:
3939
- LDFLAGS="/usr/local/lib/libprotobuf.a /usr/local/lib/libprotoc.a"
4040
before_install:
4141
- brew update
42+
- pushd $(brew --repo)/Library/Taps/homebrew/homebrew-core
43+
- git checkout 25a1892 Formula/protobuf.rb
4244
- EDITOR="sed -i '' 's/system \".\/configure\",/system \".\/configure\", \"--disable-shared\",/g'"
4345
brew edit protobuf
4446
- brew install protobuf
47+
- popd
4548
script: "./ci/travis.sh"
4649
before_cache:
4750
- 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)