Temp: comment the whole system

This commit is contained in:
Boulay Mathias 2023-05-03 18:03:34 +02:00 committed by GitHub
parent 66662f0353
commit ed5e31fb6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,76 +3,78 @@ name: Build OpenJDK 17 for Android and iOS
on: [push, pull_request, workflow_dispatch] on: [push, pull_request, workflow_dispatch]
jobs: jobs:
build_android: # build_android:
strategy: # strategy:
matrix: # matrix:
arch: [ "aarch32", "aarch64", "x86", "x86_64" ] # arch: [ "aarch32", "aarch64", "x86", "x86_64" ]
fail-fast: false # fail-fast: false
name: "Build for Android ${{matrix.arch}}" # name: "Build for Android ${{matrix.arch}}"
runs-on: ubuntu-20.04 # runs-on: ubuntu-20.04
steps: # steps:
- name: Checkout repository # - name: Checkout repository
uses: actions/checkout@v2 # uses: actions/checkout@v2
- name: set up JDK 1.17 # - name: set up JDK 1.17
uses: actions/setup-java@v1 # uses: actions/setup-java@v1
with: # with:
java-version: 1.17 # java-version: 1.17
- name: Build with CI build script # - name: Build with CI build script
run: bash "ci_build_arch_${{matrix.arch}}.sh" # run: bash "ci_build_arch_${{matrix.arch}}.sh"
- name: Upload JDK build output # - name: Upload JDK build output
uses: actions/upload-artifact@v2 # uses: actions/upload-artifact@v2
with: # with:
name: "jdk17-${{matrix.arch}}" # name: "jdk17-${{matrix.arch}}"
path: jdk17*.tar.xz # path: jdk17*.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: 'jre17-${{matrix.arch}}' # name: 'jre17-${{matrix.arch}}'
path: jre17*.tar.xz # path: jre17*.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: "jre17-debuginfo-${{matrix.arch}}" # name: "jre17-debuginfo-${{matrix.arch}}"
path: dizout # path: dizout
build_iosport: # build_iosport:
name: "Build for iOS aarch64" # name: "Build for iOS aarch64"
runs-on: MacStadium # runs-on: MacStadium
continue-on-error: true # continue-on-error: true
steps: # steps:
- name: Checkout repository # - name: Checkout repository
uses: actions/checkout@v2 # uses: actions/checkout@v2
- name: Build with CI build script # - name: Build with CI build script
run: | # run: |
export PATH=/opt/procursus/bin:/opt/homebrew/bin:$PATH # export PATH=/opt/procursus/bin:/opt/homebrew/bin:$PATH
export JAVA_HOME=$(/usr/libexec/java_home -v 17) # export JAVA_HOME=$(/usr/libexec/java_home -v 17)
export BUILD_IOS=1 # export BUILD_IOS=1
bash "ci_build_arch_aarch64.sh" # 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: "jdk17-ios-aarch64" # name: "jdk17-ios-aarch64"
path: jdk17*.tar.xz # path: jdk17*.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: 'jre17-ios-aarch64' # name: 'jre17-ios-aarch64'
path: jre17*.tar.xz # path: jre17*.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: "jre17-ios-debuginfo-aarch64" # name: "jre17-ios-debuginfo-aarch64"
path: dizout # path: dizout
pojav: pojav:
needs: build_android needs: build_android
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- name: Setup ndk
run: bash ""
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Get jre17-aarch32 - name: Get jre17-aarch32