From 08663cb787b71f31220dbebd98561e27abc68bb4 Mon Sep 17 00:00:00 2001 From: Eilionoir Tunnicliff Date: Fri, 1 Jul 2022 02:44:19 -0400 Subject: [PATCH] This is definitely not going to work first try --- .github/workflows/build.yml | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a95e24f..8c3e77f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,8 +18,14 @@ jobs: uses: actions/setup-java@v1 with: java-version: 1.7 - - name: Build with CI build script - run: bash "ci_build_arch_${{matrix.arch}}.sh" + - name: step one + run: make deps + - name: step two + run: make clone-jdk + - name: step three + run: make jdk + - name: step four + run: make package - name: Upload JDK build output uses: actions/upload-artifact@v2 with: @@ -49,10 +55,22 @@ jobs: with: java-version: 1.7 - - name: Build with CI build script + - name: step one run: | export BUILD_IOS=1 - bash "ci_build_arch_aarch64.sh" + make deps + - name: step two + run: | + export BUILD_IOS=1 + make clone-jdk + - name: step three + run: | + export BUILD_IOS=1 + make jdk + - name: step four + run: | + export BUILD_IOS=1 + make package - name: Upload JDK build output uses: actions/upload-artifact@v2