Skip to content

Commit

Permalink
Merge pull request #7178 from thundernest/fix_github_action_runs
Browse files Browse the repository at this point in the history
Fix GitHub Actions Failure with Error Code 143
  • Loading branch information
wmontwe authored Sep 19, 2023
2 parents e84354c + d142bbe commit 5489a2c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/ci-gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
org.gradle.daemon=false
org.gradle.parallel=true
org.gradle.workers.max=2

kotlin.incremental=false
kotlin.compiler.execution.strategy=in-process
20 changes: 19 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,29 @@ jobs:

build:
runs-on: ubuntu-latest
timeout-minutes: 90

steps:
- uses: actions/checkout@v4

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17

- uses: gradle/gradle-build-action@v2
- run: ./gradlew assembleDebug detekt spotlessCheck testsOnCi

- name: Quality - Spotless
run: ./gradlew spotlessCheck

- name: Quality - Detekt
run: ./gradlew detekt

- name: Build
run: ./gradlew assembleDebug

- name: Test
run: ./gradlew testsOnCi
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android.defaults.buildfeatures.shaders=false

# Gradle
## Ensure important default jvmargs aren't overwritten. See https://github.com/gradle/gradle/issues/19750
org.gradle.jvmargs=-Xmx4G -Xms1G -XX:MaxMetaspaceSize=1536M -Dfile.encoding=UTF-8 -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError
org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8 -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError

org.gradle.parallel=true

Expand Down

0 comments on commit 5489a2c

Please sign in to comment.