Skip to content

Commit

Permalink
Adds android GitHub build actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
tommie committed Dec 23, 2023
1 parent 76aa1a3 commit f533747
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/v8build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ jobs:
strategy:
fail-fast: false
matrix:
# We use macos-11 over macos-latest because macos-latest defaults to Catalina(10.15) and not Big Sur(11.0)
# We can switch to macos-latest whenever Big Sur becomes the default
# See https://github.com/actions/virtual-environments#available-environments
#
# We need xcode 12.4 or newer to cross compile between arm64/amd64
# https://github.com/actions/virtual-environments/blob/main/images/macos/macos-11-Readme.md#xcode
platform: [ubuntu-22.04, macos-11]
os: [android, darwin, linux]
arch: [x86_64, arm64]
include:
- os: android
platform: ubuntu-latest
- os: linux
platform: ubuntu-latest
- os: darwin
platform: macos-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
Expand All @@ -27,14 +28,14 @@ jobs:
run: cd deps/depot_tools && git config --unset-all remote.origin.fetch; git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
shell: bash
- name: Install g++-aarch64-linux-gnu
if: matrix.platform == 'ubuntu-22.04' && matrix.arch == 'arm64'
if: matrix.os == 'linux' && matrix.arch == 'arm64'
run: sudo apt update && sudo apt install g++-aarch64-linux-gnu -y
- name: Build V8 linux
if: matrix.platform == 'ubuntu-22.04'
run: cd deps && ./build.py --no-clang --arch ${{ matrix.arch }}
- name: Build V8 macOS
if: matrix.platform == 'macos-11'
run: cd deps && ./build.py --arch ${{ matrix.arch }}
- name: Build V8 (${{ matrix.os }})
if: matrix.os == 'linux'
run: cd deps && ./build.py --no-clang --arch ${{ matrix.arch }} --os ${{ matrix.os }}
- name: Build V8 (${{ matrix.os }})
if: matrix.os == 'darwin' || matrix.os == 'android'
run: cd deps && ./build.py --arch ${{ matrix.arch }} --os ${{ matrix.os }}
- name: Create PR
uses: peter-evans/create-pull-request@v3
with:
Expand Down

0 comments on commit f533747

Please sign in to comment.