Add Linux arm64 support and disable sandbox and verification checks #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: Leak Check | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17.2 | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Go Test | |
env: | |
CC: clang | |
CXX: clang++ | |
run: | | |
go test -c --tags leakcheck | |
./v8go.test |