build: add v8_toolchain
to darwin/x64 (#42487)
build: add v8_toolchain to darwin/x64
This commit is contained in:
parent
9fe1b05025
commit
9e066e7b74
1 changed files with 6 additions and 0 deletions
6
.github/actions/build-electron/action.yml
vendored
6
.github/actions/build-electron/action.yml
vendored
|
@ -26,6 +26,12 @@ inputs:
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
|
- name: Set GN_EXTRA_ARGS for MacOS x64 Builds
|
||||||
|
shell: bash
|
||||||
|
if: ${{ inputs.target-arch == 'x64' && inputs.target-platform == 'macos' }}
|
||||||
|
run: |
|
||||||
|
GN_APPENDED_ARGS="$GN_EXTRA_ARGS v8_snapshot_toolchain='//build/toolchain/mac:clang_x64'"
|
||||||
|
echo "GN_EXTRA_ARGS=$GN_APPENDED_ARGS" >> $GITHUB_ENV
|
||||||
- name: Build Electron ${{ inputs.step-suffix }}
|
- name: Build Electron ${{ inputs.step-suffix }}
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue