Fix gradle configuration of CI workflow

We accidentally removed gradle configurations in commit 211bd5f115.
This commit is contained in:
JingMatrix 2026-03-05 00:06:54 +01:00
parent fc718e739b
commit 64de2736d8
1 changed files with 7 additions and 0 deletions

View File

@ -49,6 +49,13 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
- name: Configure Gradle properties
run: |
echo 'android.native.buildOutput=verbose' >> ~/.gradle/gradle.properties
echo 'org.gradle.parallel=true' >> ~/.gradle/gradle.properties
echo 'org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 -XX:+UseParallelGC' >> ~/.gradle/gradle.properties
echo 'android.native.buildOutput=verbose' >> ~/.gradle/gradle.properties
- name: Setup ninja
uses: seanmiddleditch/gha-setup-ninja@v6
with: