From 5612d52e3b196e26cf7b472ed62212476466ba16 Mon Sep 17 00:00:00 2001 From: Kudo Chien Date: Fri, 26 Jan 2024 03:43:46 +0800 Subject: [PATCH] fix --- .github/workflows/android.yml | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 487b48c..4fc9ba0 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -30,10 +30,6 @@ jobs: DEPOT_TOOLS_UPDATE: 0 steps: - - name: test - run: | - echo dist-${{ matrix.variant }}-${{ matrix.external-startup-data }} - exit 1 - name: Setup docker workspace run: | sudo sh -c "chown -R ubuntu $HOME" @@ -66,22 +62,22 @@ jobs: - name: Patch V8 run: scripts/patch.sh android - # - name: Build V8 arm - # run: | - # scripts/build.sh android arm - # - # - name: Build V8 x86 - # run: | - # scripts/build.sh android x86 - # + - name: Build V8 arm + run: | + scripts/build.sh android arm + + - name: Build V8 x86 + run: | + scripts/build.sh android x86 + - name: Build V8 arm64 run: | scripts/build.sh android arm64 - # - name: Build V8 x64 - # run: | - # scripts/build.sh android x64 - # + - name: Build V8 x64 + run: | + scripts/build.sh android x64 + - name: Archive run: | scripts/archive.sh android @@ -89,7 +85,7 @@ jobs: - uses: actions/upload-artifact@v3 with: - name: dist-${{ matrix.variant }}${{ matrix.external-startup-data == 'true' && '' || '-nosnapshot' }} + name: dist-${{ matrix.variant }}-${{ matrix.external-startup-data }} path: dist.tar