-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (53 loc) · 1.45 KB
/
build.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
name: Build OpenJDK 21 for Android and iOS
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 2 1 */2 *'
jobs:
build_android:
strategy:
matrix:
arch: [ "aarch64" ]
fail-fast: false
name: "Build for Android ${{matrix.arch}}"
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build with CI build script
run: bash "ci_build_arch_${{matrix.arch}}.sh"
- name: Upload JDK build output
uses: actions/upload-artifact@v4
with:
name: "jdk24-${{matrix.arch}}"
path: jdk24*.tar.xz
- name: Upload JRE build output
uses: actions/upload-artifact@v4
with:
name: 'jre22-${{matrix.arch}}'
path: jre22*.tar.xz
- name: Upload JRE debuginfo build output
uses: actions/upload-artifact@v4
with:
name: "jre22-debuginfo-${{matrix.arch}}"
path: dizout
pojav:
needs: build_android
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get jre22-aarch64
uses: actions/download-artifact@v4
with:
name: jre22-aarch64
path: pojav
- name: Repack JRE
run: bash "repackjre.sh" $GITHUB_WORKSPACE/pojav $GITHUB_WORKSPACE/pojav/jre21-pojav
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: jre22-pojav
path: pojav/jre22-pojav/*