-
Notifications
You must be signed in to change notification settings - Fork 27
123 lines (105 loc) · 3.54 KB
/
main.yml
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
112
113
114
115
116
117
118
119
120
121
122
123
name: Android CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
arch: [ "all", "arm", "arm64", "x86", "x86_64" ]
fail-fast: false
env:
CURSEFORGE_API_KEY: ${{ secrets.CURSEFORGE_API_KEY }}
VERA_KEYSTORE_PASSWORD: ${{ secrets.VERA_KEYSTORE_PASSWORD }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get JRE 8
uses: dawidd6/action-download-artifact@v3
with:
workflow: buildjre8.yml
path: app_pojavlauncher/src/main/assets/components/jre-8
workflow_conclusion: success
repo: Vera-Firefly/android-openjdk-autobuild
branch: main
name: jre8-pojav
- name: Get JRE 21
uses: dawidd6/action-download-artifact@v3
with:
workflow: buildjre21.yml
path: app_pojavlauncher/src/main/assets/components/jre-21
workflow_conclusion: success
repo: Vera-Firefly/android-openjdk-autobuild
branch: main
name: jre21-pojav
- name: Get LWJGL3
uses: dawidd6/action-download-artifact@v3
with:
workflow: main.yml
path: app_pojavlauncher/src/main/assets/components/lwjgl3
workflow_conclusion: success
repo: Vera-Firefly/lwjgl3-build
branch: 3.3.3
name: lwjgl
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Build Release ${{matrix.arch}} .apk
if: github.repository_owner == 'Vera-Firefly' && github.ref_name == 'main_v3'
run: |
chmod +x gradlew
./gradlew app_pojavlauncher:assemblerelease -Darch=${{matrix.arch}}
- name: Build Debug ${{matrix.arch}} .apk
run: |
chmod +x gradlew
./gradlew app_pojavlauncher:assembleDebug -Darch=${{matrix.arch}}
- name: Upload Release
if: github.repository_owner == 'Vera-Firefly' && github.ref_name == 'main_v3'
uses: actions/upload-artifact@v4
with:
name: app-release-${{matrix.arch}}
path: app_pojavlauncher/build/outputs/apk/release/*
- name: Upload Debug
uses: actions/upload-artifact@v4
with:
name: app-debug-${{matrix.arch}}
path: app_pojavlauncher/build/outputs/apk/debug/*
buildnoruntime:
runs-on: ubuntu-22.04
strategy:
matrix:
arch: [ "all", "arm", "arm64", "x86", "x86_64" ]
fail-fast: false
env:
CURSEFORGE_API_KEY: ${{ secrets.CURSEFORGE_API_KEY }}
VERA_KEYSTORE_PASSWORD: ${{ secrets.VERA_KEYSTORE_PASSWORD }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get LWJGL3
uses: dawidd6/action-download-artifact@v3
with:
workflow: main.yml
path: app_pojavlauncher/src/main/assets/components/lwjgl3
workflow_conclusion: success
repo: Vera-Firefly/lwjgl3-build
branch: 3.3.3
name: lwjgl
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Build Debug-noruntime ${{matrix.arch}} .apk
run: |
chmod +x gradlew
./gradlew app_pojavlauncher:assembleDebug -Darch=${{matrix.arch}}
- name: Upload Debug
uses: actions/upload-artifact@v4
with:
name: app-debug-${{matrix.arch}}-noruntime
path: app_pojavlauncher/build/outputs/apk/debug/*