update build script
CI / Prepare job (push) Successful in 4s Details
CI / Build individual modules (push) Failing after 2m13s Details
CI / Publish repo (push) Has been skipped Details

This commit is contained in:
Draff 2024-07-14 14:54:48 +01:00
parent c2b107a8bd
commit 14e21ef21c
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 8 additions and 8 deletions

View File

@ -24,7 +24,7 @@ jobs:
CI_MODULE_GEN: true
steps:
- name: Clone repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
build_individual:
name: Build individual modules
@ -32,7 +32,7 @@ jobs:
runs-on: arch
steps:
- name: Checkout master branch
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up JDK
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
@ -45,7 +45,7 @@ jobs:
echo ${{ secrets.SIGNING_KEY }} | base64 -d > signingkey.jks
- name: Set up Gradle
uses: gradle/actions/setup-gradle@750cdda3edd6d51b7fdfc069d2e2818cf3c44f4c # v3.3.1
uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda # v3.4.2
- name: Build extensions
env:
@ -56,7 +56,7 @@ jobs:
- name: Upload APKs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
with:
name: "individual-apks"
path: "**/*.apk"
@ -72,7 +72,7 @@ jobs:
runs-on: arch
steps:
- name: Download APK artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
path: ~/apk-artifacts
@ -83,7 +83,7 @@ jobs:
distribution: temurin
- name: Checkout master branch
uses: actions/checkout@v4
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: master
path: master
@ -98,7 +98,7 @@ jobs:
python ./.github/scripts/create-repo.py
- name: Checkout repo branch
uses: actions/checkout@v4
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: repo
path: repo

View File

@ -9,7 +9,7 @@
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx6144m
org.gradle.jvmargs=-Xmx8000m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit