Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Gradle Build
on:
push:
branches:
- master
pull_request:
jobs:
gradle:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
java: [1.8, 1.11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build Library
uses: eskatos/gradle-command-action@v1
with:
arguments: build
- name: Build Examples
uses: eskatos/gradle-command-action@v1
with:
arguments: build
build-root-directory: examples
wrapper-directory: examples
61 changes: 0 additions & 61 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

ext {
grpcVersion = '1.28.0' // CURRENT_GRPC_VERSION
grpcVersion = '1.29.0' // CURRENT_GRPC_VERSION
protobufVersion = '3.11.0'
kotlinVersion = '1.3.61'
coroutinesVersion = '1.3.3'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ private OkHttpChannelBuilder createChannelBuilder() {
OkHttpChannelBuilder builder = OkHttpChannelBuilder.forAddress("localhost", port)
.maxInboundMessageSize(AbstractInteropTest.MAX_MESSAGE_SIZE)
.connectionSpec(new ConnectionSpec.Builder(ConnectionSpec.MODERN_TLS)
.cipherSuites(TestUtils.preferredTestCiphers().toArray(new String[0]))
.build())
.overrideAuthority(Util.authorityFromHostAndPort(
TestUtils.TEST_SERVER_HOST, port));
Expand Down