mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-09-10 12:47:00 -04:00
Working on iOS
This commit is contained in:
parent
b6133c53f1
commit
0bd01c9a06
22
.github/workflows/build.yml
vendored
22
.github/workflows/build.yml
vendored
@ -3,14 +3,9 @@ name: Build OpenJDK for Android
|
|||||||
on: [push, pull_request, workflow_dispatch]
|
on: [push, pull_request, workflow_dispatch]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build_iosport:
|
||||||
strategy:
|
name: "Build for iOS aarch64"
|
||||||
matrix:
|
runs-on: self-hosted
|
||||||
arch: [ "aarch32", "aarch64", "x86", "x86_64" ]
|
|
||||||
fail-fast: false
|
|
||||||
|
|
||||||
name: "Build ${{matrix.arch}}"
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@ -21,24 +16,25 @@ jobs:
|
|||||||
java-version: 1.7
|
java-version: 1.7
|
||||||
|
|
||||||
- name: Build with CI build script
|
- name: Build with CI build script
|
||||||
run: bash "ci_build_arch_${{matrix.arch}}.sh"
|
run: |
|
||||||
|
export BUILD_IOS=1
|
||||||
|
bash "ci_build_arch_aarch64.sh"
|
||||||
- name: Upload JDK build output
|
- name: Upload JDK build output
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: "jdk8-${{matrix.arch}}"
|
name: "jdk8-ios-${{matrix.arch}}"
|
||||||
path: jdk8*.tar.xz
|
path: jdk8*.tar.xz
|
||||||
|
|
||||||
- name: Upload JRE build output
|
- name: Upload JRE build output
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: 'jre8-${{matrix.arch}}'
|
name: 'jre8-ios-${{matrix.arch}}'
|
||||||
path: jre8*.tar.xz
|
path: jre8*.tar.xz
|
||||||
|
|
||||||
- name: Upload JRE debuginfo build output
|
- name: Upload JRE debuginfo build output
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: "jre8-debuginfo-${{matrix.arch}}"
|
name: "jre8-ios-debuginfo-${{matrix.arch}}"
|
||||||
path: dizout
|
path: dizout
|
||||||
pojav:
|
pojav:
|
||||||
needs: build
|
needs: build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user