mirror of https://github.com/grpc/grpc-java.git
buildscripts: add Kokoro-based CI for gRPC Cronet
This commit is contained in:
parent
c7a5bd7a5c
commit
8ecef08d33
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Config file for internal CI
|
||||||
|
|
||||||
|
# Location of the continuous shell script in repository.
|
||||||
|
build_file: "grpc-java/buildscripts/kokoro/cronet.sh"
|
||||||
|
timeout_mins: 45
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -exu -o pipefail
|
||||||
|
|
||||||
|
cd ./github/grpc-java
|
||||||
|
./gradlew -PskipCodegen=true install
|
||||||
|
|
||||||
|
cd cronet
|
||||||
|
./cronet_deps.sh
|
||||||
|
../gradlew build
|
||||||
Loading…
Reference in New Issue