New AST structure #763
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
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test-macos: | |
runs-on: macos-latest | |
steps: | |
- name: Install homebrew | |
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
- name: Install pcre | |
run: brew install pcre | |
- name: Checkout project | |
uses: actions/[email protected] | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Build MIR | |
run: cd vendors/mir && make && cd .. | |
- name: Setup nightly Zig | |
uses: goto-bus-stop/setup-zig@v1 | |
with: | |
version: master | |
- name: Build test ffi lib | |
run: zig build-lib -dynamic tests/utils/foreign.zig && mv libforeign.* tests/utils/ | |
- name: Run Tests | |
run: zig build -Doptimize=ReleaseSafe test | |
- name: Cleanup | |
run: rm -rf zig-out zig-cache | |
- name: Run tests with JIT always on | |
run: zig build -Djit_always_on -Doptimize=ReleaseSafe test | |
- name: Cleanup | |
run: rm -rf zig-out zig-cache | |
test-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/[email protected] | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Build MIR | |
run: cd vendors/mir && make && cd .. | |
- name: Setup nightly Zig | |
uses: goto-bus-stop/setup-zig@v1 | |
with: | |
version: master | |
- name: Build test ffi lib | |
run: zig build-lib -dynamic tests/utils/foreign.zig && mv libforeign.* tests/utils/ | |
- name: Run tests | |
run: zig build -Doptimize=ReleaseSafe test | |
- name: Cleanup | |
run: rm -rf zig-out zig-cache | |
- name: Run tests with JIT always on | |
run: zig build -Djit_always_on -Doptimize=ReleaseSafe test | |
- name: Cleanup | |
run: rm -rf zig-cache zig-out | |
lint: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup nightly Zig | |
uses: goto-bus-stop/setup-zig@v1 | |
with: | |
version: master | |
- run: zig fmt --check src/*.zig src/**/*.zig |