Skip to content

Commit 64de273

Browse files
committed
Fix gradle configuration of CI workflow
We accidentally removed gradle configurations in commit 211bd5f.
1 parent fc718e7 commit 64de273

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/core.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@ jobs:
4949
- name: Setup Gradle
5050
uses: gradle/actions/setup-gradle@v5
5151

52+
- name: Configure Gradle properties
53+
run: |
54+
echo 'android.native.buildOutput=verbose' >> ~/.gradle/gradle.properties
55+
echo 'org.gradle.parallel=true' >> ~/.gradle/gradle.properties
56+
echo 'org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 -XX:+UseParallelGC' >> ~/.gradle/gradle.properties
57+
echo 'android.native.buildOutput=verbose' >> ~/.gradle/gradle.properties
58+
5259
- name: Setup ninja
5360
uses: seanmiddleditch/gha-setup-ninja@v6
5461
with:

0 commit comments

Comments
 (0)