Switch to V8 engine instead of Wasmer #13
Workflow file for this run
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: CMake on OSX | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Initialize submodules | |
run: git submodule update --init --recursive | |
- name: Install depot_tools | |
run: | | |
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git | |
echo "export PATH=$PATH:${{ github.workspace }}/depot_tools" >> $GITHUB_ENV | |
- name: Cache CMake build | |
uses: actions/cache@v3 | |
with: | |
path: build | |
key: ${{ runner.os }}-build-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-build- | |
- name: Cache CMake dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
.cache | |
key: ${{ runner.os }}-cmake-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-cmake- | |
- name: Build project | |
working-directory: ${{ github.workspace }} | |
run: | | |
cat $GITHUB_ENV | |
which fetch | |
ls ${{ github.workspace }}/depot_tools | |
./build.sh | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: ${{ github.workspace }}/build | |
lexer-test: | |
runs-on: macos-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: ${{ github.workspace }}/build | |
- name: Make LexerTest Executable | |
run: chmod +x ${{ github.workspace }}/build/LexerTest | |
- name: Output Wasmer directory | |
run: ls -laR ${{ github.workspace }}/lib/wasmer | |
- name: Run Lexer Test | |
working-directory: ${{ github.workspace }}/build | |
run: ./LexerTest | |
parser-test: | |
runs-on: macos-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: ${{ github.workspace }}/build | |
- name: Make ParserTest Executable | |
run: chmod +x ${{ github.workspace }}/build/ParserTest | |
- name: Run Parser Test | |
working-directory: ${{ github.workspace }}/build | |
run: ./ParserTest | |
typechecker-test: | |
runs-on: macos-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: ${{ github.workspace }}/build | |
- name: Make TypeCheckerTest Executable | |
run: chmod +x ${{ github.workspace }}/build/TypeCheckerTest | |
- name: Run TypeChecker Test | |
working-directory: ${{ github.workspace }}/build | |
run: ./TypeCheckerTest | |
codegen-test: | |
runs-on: macos-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: ${{ github.workspace }}/build | |
- name: Make CodegenTest Executable | |
run: chmod +x ${{ github.workspace }}/build/CodegenTest | |
- name: Run Codegen Test | |
working-directory: ${{ github.workspace }}/build | |
run: ./CodegenTest |