1# Config file for internal CI 2 3# Location of the continuous shell script in repository. 4build_file: "grpc-java/buildscripts/kokoro/macos.sh" 5timeout_mins: 45 6 7# We had problems with random tests timing out because it took seconds to do 8# trivial (ns) operations. The Mac machines have 2 cores with 4 logical 9# threads, so Gradle should be using 4 workers by default. 10env_vars { 11 key: "GRADLE_FLAGS" 12 value: "--max-workers=2" 13} 14 15# We always build mvn artifacts. 16action { 17 define_artifacts { 18 regex: "github/grpc-java/**/build/test-results/**/sponge_log.xml" 19 regex: "github/grpc-java/mvn-artifacts/**" 20 } 21} 22