V8 Build #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: V8 Build | |
on: workflow_dispatch | |
jobs: | |
build: | |
name: Build V8 for ${{ matrix.platform }} ${{ matrix.arch }} | |
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-13] | |
arch: [x86_64, arm64] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
fetch-depth: 1 | |
- name: Update depot_tools fetch config | |
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' | |
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-13' | |
run: cd deps && pip3 install setuptools && ./build.py --arch ${{ matrix.arch }} | |
- name: Create PR | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
commit-message: Update V8 static library for ${{ matrix.platform }} ${{ matrix.arch }} | |
branch-suffix: random | |
delete-branch: true | |
token: ${{ secrets.TOKEN }} | |
title: V8 static library for ${{ matrix.platform }} ${{ matrix.arch }} | |
body: Auto-generated pull request to build V8 for ${{ matrix.platform }} ${{ matrix.arch }} |