forked from PojavLauncherTeam/PojavLauncher
-
Notifications
You must be signed in to change notification settings - Fork 244
111 lines (98 loc) · 3.19 KB
/
Copy pathandroid.yml
File metadata and controls
111 lines (98 loc) · 3.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: Android CI
on:
pull_request:
branches-ignore:
- 'l10n_v3_openjdk'
types: [ opened, reopened ]
push:
branches-ignore:
- 'l10n_v3_openjdk'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
env:
GPLAY_KEYSTORE_PASSWORD: ${{ secrets.GPLAY_KEYSTORE_PASSWORD }}
CURSEFORGE_API_KEY: ${{ secrets.CURSEFORGE_API_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
- name: Get JRE 8
uses: dawidd6/action-download-artifact@v9
with:
workflow: build.yml
path: app_pojavlauncher/src/main/assets/components/jre
workflow_conclusion: completed
repo: AngelAuraMC/angelauramc-openjdk-build
branch: buildjre8
name: jre8-pojav
# - name: Get JRE17
# uses: dawidd6/action-download-artifact@v9
# with:
# workflow: build.yml
# path: app_pojavlauncher/src/main/assets/components/jre-new
# workflow_conclusion: completed
# repo: AngelAuraMC/angelauramc-openjdk-build
# branch: buildjre17-21
# name: jre17-pojav
#
# - name: Get JRE21
# uses: dawidd6/action-download-artifact@v9
# with:
# workflow: build.yml
# path: app_pojavlauncher/src/main/assets/components/jre-21
# workflow_conclusion: completed
# repo: AngelAuraMC/angelauramc-openjdk-build
# branch: buildjre17-21
# name: jre21-pojav
#
# - name: Get JRE25
# uses: dawidd6/action-download-artifact@v9
# with:
# workflow: build.yml
# path: app_pojavlauncher/src/main/assets/components/jre-25
# workflow_conclusion: completed
# repo: FCL-Team/Android-OpenJDK-Build
# branch: Build_JRE_25
# name: jre25-multiarch
- uses: gradle/actions/setup-gradle@v4
with:
validate-wrappers: false
gradle-version: "8.11"
- name: Run scripts
run: |
./scripts/languagelist_updater.sh
mkdir out
- name: Build Release .apk
run: |
# Build the launcher
gradle :app_pojavlauncher:assembleRelease
mv app_pojavlauncher/build/outputs/apk/release/app_pojavlauncher-release.apk out/app-release.apk
- name: Gen md5sums
run: |
md5sum out/app-release.apk > out/app-release.md5
- name: Build Debug .apk
run: |
# Build the launcher
gradle :app_pojavlauncher:assembleDebug
mv app_pojavlauncher/build/outputs/apk/debug/app_pojavlauncher-debug.apk out/app-debug.apk
- name: Gen md5sums
run: |
md5sum out/app-debug.apk > out/app-debug.md5
- name: Upload debug APK
uses: actions/upload-artifact@v4
with:
name: app-debug (recommended)
path: out/app-debug.*
- name: Upload release APK
uses: actions/upload-artifact@v4
with:
name: app-release
path: out/app-release.*