-
Notifications
You must be signed in to change notification settings - Fork 1
104 lines (95 loc) · 2.65 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
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
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: [ "aarch32", "aarch64", "x86", "x86_64" ]
fail-fast: false
name: "Build for Android ${{matrix.arch}}"
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build with CI build script
run: bash "ci_build_arch_${{matrix.arch}}.sh"
- name: Upload JDK build output
uses: actions/upload-artifact@v2
with:
name: "jdk21-${{matrix.arch}}"
path: jdk21*.tar.xz
- name: Upload JRE build output
uses: actions/upload-artifact@v2
with:
name: 'jre21-${{matrix.arch}}'
path: jre21*.tar.xz
- name: Upload JRE debuginfo build output
uses: actions/upload-artifact@v2
with:
name: "jre21-debuginfo-${{matrix.arch}}"
path: dizout
build_iosport:
name: "Build for iOS aarch64"
runs-on: MacStadium
continue-on-error: true
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build with CI build script
run: |
export PATH=/opt/procursus/bin:/opt/homebrew/bin:$PATH
export BUILD_IOS=1
bash "ci_build_arch_aarch64.sh"
- name: Upload JDK build output
uses: actions/upload-artifact@v2
with:
name: "jdk21-ios-aarch64"
path: jdk21*.tar.xz
- name: Upload JRE build output
uses: actions/upload-artifact@v2
with:
name: 'jre21-ios-aarch64'
path: jre21*.tar.xz
- name: Upload JRE debuginfo build output
uses: actions/upload-artifact@v2
with:
name: "jre21-ios-debuginfo-aarch64"
path: dizout
pojav:
needs: build_android
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Get jre21-aarch32
uses: actions/download-artifact@v2
with:
name: jre21-aarch32
path: pojav
- name: Get jre21-aarch64
uses: actions/download-artifact@v2
with:
name: jre21-aarch64
path: pojav
- name: Get jre21-x86
uses: actions/download-artifact@v2
with:
name: jre21-x86
path: pojav
- name: Get jre21-x86_64
uses: actions/download-artifact@v2
with:
name: jre21-x86_64
path: pojav
- name: Repack JRE
run: bash "repackjre.sh" $GITHUB_WORKSPACE/pojav $GITHUB_WORKSPACE/pojav/jre21-pojav
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: jre21-pojav
path: pojav/jre21-pojav/*