feat: reset submodules #184
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 Test | |
on: | |
push: | |
branches: | |
- master | |
- actions | |
paths-ignore: | |
- "depot_tools" | |
- ".gitignore" | |
- ".gitpod*" | |
jobs: | |
build-test: | |
name: Build V8 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
submodules: false | |
fetch-depth: 1 | |
- name: Reset Submodules | |
run: | | |
git submodule deinit -f . | |
git submodule update --init | |
- name: Restore V8 Cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
v8 | |
.gclient_entries | |
.gclient_previous_sync_commits | |
.cipd | |
key: ${{ runner.os }}:libv8:v8:${{ hashFiles('**/VERSION') }} | |
- name: Build V8 for Linux | |
if: startsWith(matrix.os, 'ubuntu') | |
uses: ./.github/actions/build-linux | |
with: | |
archive-name: v8_${{ runner.os }}_amd64 | |
- name: Build V8 for macOS | |
if: startsWith(matrix.os, 'macos') | |
uses: ./.github/actions/build-macos | |
with: | |
archive-name: v8_${{ runner.os }}_amd64 | |
- name: Build V8 for Windows | |
if: startsWith(matrix.os, 'windows') | |
uses: ./.github/actions/build-windows | |
with: | |
archive-name: v8_${{ runner.os }}_amd64 | |
- name: Archive V8 Library | |
uses: actions/upload-artifact@v3 | |
with: | |
path: | | |
*.tar.xz | |
*.7z | |
retention-days: 7 |