update build elf-cleaner #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build OpenJDK 17 for Android | |
on: [push, pull_request, workflow_dispatch] | |
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@v2 | |
- name: set up JDK 1.17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.17 | |
- 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: "jdk17-${{matrix.arch}}" | |
path: jdk17*.tar.xz | |
- name: Upload JRE build output | |
uses: actions/upload-artifact@v2 | |
with: | |
name: 'jre17-${{matrix.arch}}' | |
path: jre17*.tar.xz | |
- name: Upload JRE debuginfo build output | |
uses: actions/upload-artifact@v2 | |
with: | |
name: "jre17-debuginfo-${{matrix.arch}}" | |
path: dizout | |
pojav: | |
needs: build_android | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Get jre17-aarch64 | |
uses: actions/download-artifact@v2 | |
with: | |
name: jre17-aarch64 | |
path: pojav | |
- name: Repack JRE | |
run: bash "repackjre.sh" $GITHUB_WORKSPACE/pojav $GITHUB_WORKSPACE/pojav/jre17-pojav | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: jre17-pojav | |
path: pojav/jre17-pojav/* |