mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-09-10 12:47:00 -04:00
fix makefile vars
This commit is contained in:
parent
08663cb787
commit
ba222bfeb4
18
.github/workflows/build.yml
vendored
18
.github/workflows/build.yml
vendored
@ -7,6 +7,8 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
arch: [ "aarch32", "aarch64", "x86", "x86_64" ]
|
arch: [ "aarch32", "aarch64", "x86", "x86_64" ]
|
||||||
|
matrix:
|
||||||
|
archTargets: [ "arm-linux-androideabi", "aarch64-linux-android", "i686-linux-android", "x86_64-linux-androidx" ]
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
||||||
name: "Build for Android ${{matrix.arch}}"
|
name: "Build for Android ${{matrix.arch}}"
|
||||||
@ -19,13 +21,13 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
java-version: 1.7
|
java-version: 1.7
|
||||||
- name: step one
|
- name: step one
|
||||||
run: make deps
|
run: make deps TARGET=${{matrix.archTargets}} TARGET_JDK=${{matrix.arch}}
|
||||||
- name: step two
|
- name: step two
|
||||||
run: make clone-jdk
|
run: make clone-jdk TARGET=${{matrix.archTargets}} TARGET_JDK=${{matrix.arch}}
|
||||||
- name: step three
|
- name: step three
|
||||||
run: make jdk
|
run: make jdk TARGET=${{matrix.archTargets}} TARGET_JDK=${{matrix.arch}}
|
||||||
- name: step four
|
- name: step four
|
||||||
run: make package
|
run: make package TARGET=${{matrix.archTargets}} TARGET_JDK=${{matrix.arch}}
|
||||||
- name: Upload JDK build output
|
- name: Upload JDK build output
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
@ -58,19 +60,19 @@ jobs:
|
|||||||
- name: step one
|
- name: step one
|
||||||
run: |
|
run: |
|
||||||
export BUILD_IOS=1
|
export BUILD_IOS=1
|
||||||
make deps
|
make deps TARGET=aarch64-macos-ios TARGET_JDK=aarch64
|
||||||
- name: step two
|
- name: step two
|
||||||
run: |
|
run: |
|
||||||
export BUILD_IOS=1
|
export BUILD_IOS=1
|
||||||
make clone-jdk
|
make clone-jdk TARGET=aarch64-macos-ios TARGET_JDK=aarch64
|
||||||
- name: step three
|
- name: step three
|
||||||
run: |
|
run: |
|
||||||
export BUILD_IOS=1
|
export BUILD_IOS=1
|
||||||
make jdk
|
make jdk TARGET=aarch64-macos-ios TARGET_JDK=aarch64
|
||||||
- name: step four
|
- name: step four
|
||||||
run: |
|
run: |
|
||||||
export BUILD_IOS=1
|
export BUILD_IOS=1
|
||||||
make package
|
make package TARGET=aarch64-macos-ios TARGET_JDK=aarch64
|
||||||
|
|
||||||
- name: Upload JDK build output
|
- name: Upload JDK build output
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user