2024-03-21 16:49:34 +00:00
|
|
|
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2021-04-22 17:17:02 +01:00
|
|
|
name: "Assemble"
|
|
|
|
|
|
|
|
on:
|
2022-12-16 14:13:55 +00:00
|
|
|
pull_request:
|
|
|
|
branches: [ master, stable-* ]
|
2022-12-16 11:24:03 +00:00
|
|
|
|
|
|
|
# Declare default permissions as read only.
|
|
|
|
permissions: read-all
|
2021-04-22 17:17:02 +01:00
|
|
|
|
2023-06-08 12:58:40 +01:00
|
|
|
concurrency:
|
|
|
|
group: assemble-flavors-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-04-22 17:17:02 +01:00
|
|
|
jobs:
|
2022-12-16 14:13:55 +00:00
|
|
|
flavor:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
flavor: [ Generic, Gplay ]
|
|
|
|
steps:
|
2024-06-17 16:54:12 +01:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-04-25 20:11:24 +01:00
|
|
|
- name: set up JDK 17
|
2024-09-09 16:31:01 +01:00
|
|
|
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0
|
2022-12-16 14:13:55 +00:00
|
|
|
with:
|
|
|
|
distribution: "temurin"
|
2023-04-14 18:20:30 +01:00
|
|
|
java-version: 17
|
2022-12-16 14:13:55 +00:00
|
|
|
- name: Build ${{ matrix.flavor }}
|
|
|
|
run: |
|
|
|
|
echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" >> gradle.properties
|
|
|
|
./gradlew assemble${{ matrix.flavor }}
|
|
|
|
- name: Archive apk
|
2024-08-30 19:52:53 +01:00
|
|
|
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
|
2022-12-16 14:13:55 +00:00
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
2023-12-20 10:20:55 +00:00
|
|
|
name: Nextcloud-${{ matrix.flavor }}-APK
|
2022-12-16 14:13:55 +00:00
|
|
|
path: app/build/outputs/apk/**/**/*.apk
|
|
|
|
retention-days: 5
|