File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed
Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1+ #
2+ # Copyright 2020 The Android Open Source Project
3+ #
4+ # Licensed under the Apache License, Version 2.0 (the "License");
5+ # you may not use this file except in compliance with the License.
6+ # You may obtain a copy of the License at
7+ #
8+ # http://www.apache.org/licenses/LICENSE-2.0
9+ #
10+ # Unless required by applicable law or agreed to in writing, software
11+ # distributed under the License is distributed on an "AS IS" BASIS,
12+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ # See the License for the specific language governing permissions and
14+ # limitations under the License.
15+ #
16+
17+ org.gradle.daemon =false
18+ org.gradle.parallel =true
19+ org.gradle.jvmargs =-Xmx5120m
20+ org.gradle.workers.max =2
21+
22+ kotlin.incremental =false
23+ kotlin.compiler.execution.strategy =in-process
Original file line number Diff line number Diff line change @@ -109,6 +109,9 @@ jobs:
109109 - name : Checkout code
110110 uses : actions/checkout@v4
111111
112+ - name : Copy CI gradle.properties
113+ run : mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
114+
112115 - name : Set up JDK 17
113116 uses : actions/setup-java@v4
114117 with :
@@ -128,7 +131,7 @@ jobs:
128131 uses : reactivecircus/android-emulator-runner@v2
129132 with :
130133 api-level : ${{ matrix.api-level }}
131- arch : x86_64
134+ arch : x86
132135 disable-animations : true
133136 disk-size : 6000M
134137 heap-size : 600M
You can’t perform that action at this time.
0 commit comments