Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kudo committed Jan 25, 2024
1 parent d15311a commit 5612d52
Showing 1 changed file with 13 additions and 17 deletions.
30 changes: 13 additions & 17 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -66,30 +62,30 @@ 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
tar -cvf dist.tar dist
- 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


Expand Down

0 comments on commit 5612d52

Please sign in to comment.