File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
integration_testing/src/test/kotlin/io/grpc/kotlin Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 99 gradle :
1010 strategy :
1111 matrix :
12- os : [ubuntu-latest, macos-latest ]
12+ os : [ubuntu-latest, macos-12 ]
1313 runs-on : ${{ matrix.os }}
1414 steps :
1515 - uses : actions/checkout@v4
2323 - uses : gradle/gradle-build-action@v3
2424
2525 - name : Test on Mac
26- if : matrix.os == 'macos-latest '
26+ if : matrix.os == 'macos-12 '
2727 run : |
2828 brew install docker
2929 colima start --network-address
Original file line number Diff line number Diff line change @@ -71,6 +71,12 @@ class ExamplesTest {
7171
7272 assertTrue(dependencyResult.output.contains(" io.grpc:grpc-kotlin-stub:$grpcKotlinVersion " ))
7373
74+ GradleRunner .create()
75+ .withProjectDir(tempDir.toFile())
76+ .withArguments(" :client:build" )
77+ .withGradleDistribution(distributionUrl)
78+ .build()
79+
7480 GradleRunner .create()
7581 .withProjectDir(tempDir.toFile())
7682 .withArguments(" :server:jibDockerBuild" , " --image=grpc-kotlin-examples-server" )
You can’t perform that action at this time.
0 commit comments