Skip to content

Commit 8b4473e

Browse files
committed
Trying x86
Change-Id: Iaea47c11d11a1e3929d2e5d12114ccbdfa44d1d0
1 parent fafc510 commit 8b4473e

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/ci-gradle.properties

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

.github/workflows/build_and_test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)