build v8 9.4 (deprecated) #31
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: build v8 9.4 | |
on: | |
workflow_dispatch: | |
inputs: | |
tag_date: | |
description: 'tag date' | |
required: true | |
#https://docs.google.com/document/d/1oFPHyNb_eXg6NzrE6xJDNPdJrHMZvx0LqsD6wpbd9vY/edit#heading=h.4tfb7x3beh2l | |
#libwee8按设计只支持wasm,不支持js,但8.4.371.19版本尚未移除js功能,还能用,如果升级v8版本要注意 | |
#libmonolith会稳妥一些,但静态库大小会大些 | |
env: | |
VERSION: 9.4.146.24 | |
jobs: | |
build_android_arm_v8: | |
name: Android (arm64-v8a) | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
cd $GITHUB_WORKSPACE | |
npm i | |
sh ./android_armv8.sh ${{env.VERSION}} | |
mv ~/v8/v8/output/v8 ~/v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: ~/v8/v8/output/**/* | |
build_android_arm_v7: | |
name: Android (armeabi-v7a) | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
cd $GITHUB_WORKSPACE | |
npm i | |
sh ./android_armv7.sh ${{env.VERSION}} | |
mv ~/v8/v8/output/v8 ~/v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: ~/v8/v8/output/**/* | |
build_android_x86_64: | |
name: Android (x86_64) | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
cd $GITHUB_WORKSPACE | |
npm i | |
sh ./android_x64.sh ${{env.VERSION}} | |
mv ~/v8/v8/output/v8 ~/v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: ~/v8/v8/output/**/* | |
build_linux: | |
name: Linux | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
cd $GITHUB_WORKSPACE | |
npm i | |
sh ./linux.sh ${{env.VERSION}} | |
mv ~/v8/v8/output/v8 ~/v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: ~/v8/v8/output/**/* | |
build_linux_arm64: | |
name: Linux_arm64 | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
cd $GITHUB_WORKSPACE | |
sh ./linux_arm64.sh ${{env.VERSION}} | |
mv ~/v8/v8/output/v8 ~/v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: ~/v8/v8/output/**/* | |
build_windows: | |
name: Windows | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
shell: cmd | |
run: | | |
cd %GITHUB_WORKSPACE% | |
call npm i | |
call .\windows_64.cmd ${{env.VERSION}} | |
- name: Rename | |
shell: bash | |
run: | | |
mv v8/v8/output/v8 v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: v8/v8/output/**/* | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin_win64 | |
path: v8/v8/output/**/* | |
build_windows_md: | |
name: Windows-MD | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
shell: cmd | |
run: | | |
cd %GITHUB_WORKSPACE% | |
call npm i | |
call .\windows_64MD.cmd ${{env.VERSION}} | |
- name: Rename | |
shell: bash | |
run: | | |
mv v8/v8/output/v8 v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: v8/v8/output/**/* | |
build_windows_md_dll: | |
name: Windows-MD-DLL | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
shell: cmd | |
run: | | |
cd %GITHUB_WORKSPACE% | |
call npm i | |
call .\windows_64MD_DLL_94.cmd ${{env.VERSION}} | |
- name: Rename | |
shell: bash | |
run: | | |
mv v8/v8/output/v8 v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: v8/v8/output/**/* | |
build_windows_32: | |
name: Windows-32 | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
shell: cmd | |
run: | | |
cd %GITHUB_WORKSPACE% | |
call npm i | |
call .\windows_32.cmd ${{env.VERSION}} | |
- name: Rename | |
shell: bash | |
run: | | |
mv v8/v8/output/v8 v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: v8/v8/output/**/* | |
build_macos: | |
name: macOS | |
runs-on: macos-11 | |
steps: | |
- name: use python3.9 | |
run: | | |
brew install [email protected] | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
export PATH=/usr/local/opt/[email protected]/libexec/bin:$PATH | |
cd $GITHUB_WORKSPACE | |
npm i | |
sh ./macos.sh ${{env.VERSION}} | |
mv ~/v8/v8/output/v8 ~/v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: ~/v8/v8/output/**/* | |
build_macos_arm64: | |
name: macOS with apple m1 | |
runs-on: macos-11 | |
steps: | |
- name: use python3.9 | |
run: | | |
brew install [email protected] | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
export PATH=/usr/local/opt/[email protected]/libexec/bin:$PATH | |
cd $GITHUB_WORKSPACE | |
npm i | |
sh ./macos_arm64.sh ${{env.VERSION}} | |
mv ~/v8/v8/output/v8 ~/v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: ~/v8/v8/output/**/* | |
build_macos_dll: | |
name: macOS-DLL | |
runs-on: macos-11 | |
steps: | |
- name: use python3.9 | |
run: | | |
brew install [email protected] | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
export PATH=/usr/local/opt/[email protected]/libexec/bin:$PATH | |
cd $GITHUB_WORKSPACE | |
npm i | |
sh ./macos_DLL.sh ${{env.VERSION}} | |
mv ~/v8/v8/output/v8 ~/v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: ~/v8/v8/output/**/* | |
build_macos_arm64_dll: | |
name: macOS-DLL with apple m1 | |
runs-on: macos-11 | |
steps: | |
- name: use python3.9 | |
run: | | |
brew install [email protected] | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
export PATH=/usr/local/opt/[email protected]/libexec/bin:$PATH | |
cd $GITHUB_WORKSPACE | |
npm i | |
sh ./macos_arm64_DLL.sh ${{env.VERSION}} | |
mv ~/v8/v8/output/v8 ~/v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: ~/v8/v8/output/**/* | |
build_ios: | |
name: iOS | |
runs-on: macos-11 | |
steps: | |
- name: use python3.9 | |
run: | | |
brew install [email protected] | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
export PATH=/usr/local/opt/[email protected]/libexec/bin:$PATH | |
cd $GITHUB_WORKSPACE | |
npm i | |
sh ./ios.sh ${{env.VERSION}} | |
mv ~/v8/v8/output/v8 ~/v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: ~/v8/v8/output/**/* | |
build_ios_simulator: | |
name: iOS simulator | |
runs-on: macos-11 | |
steps: | |
- name: use python3.9 | |
run: | | |
brew install [email protected] | |
- uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
export PATH=/usr/local/opt/[email protected]/libexec/bin:$PATH | |
cd $GITHUB_WORKSPACE | |
npm i | |
sh ./ios_simulator.sh ${{env.VERSION}} | |
mv ~/v8/v8/output/v8 ~/v8/v8/output/v8_9.4 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: v8_bin | |
path: ~/v8/v8/output/**/* | |
publish: | |
runs-on: ubuntu-20.04 | |
needs: [build_android_arm_v8,build_android_arm_v7,build_android_x86_64,build_linux,build_linux_arm64,build_windows,build_windows_32,build_windows_md,build_macos_arm64,build_macos_arm64_dll,build_ios_simulator,build_macos,build_ios,build_windows_md_dll,build_macos_dll] | |
steps: | |
- uses: actions/download-artifact@v1 | |
with: | |
name: v8_bin | |
path: v8_bin/ | |
- name: Create Release Asset | |
run: | | |
cd v8_bin/ && tar cvfz ../v8_bin_${{env.VERSION}}.tgz v8_9.4 && cd - | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: V8_${{env.VERSION}}_${{ github.event.inputs.tag_date }} | |
release_name: V8_${{env.VERSION}}_${{ github.event.inputs.tag_date }} | |
draft: false | |
prerelease: false | |
- name: Upload V8 | |
#id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./v8_bin_${{env.VERSION}}.tgz | |
asset_name: v8_bin_${{env.VERSION}}.tgz | |
asset_content_type: application/tgz | |