Driver: handle different debug/release error sets for processSource #1295
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- tmp | |
pull_request: | |
paths: | |
- '**.zig' | |
- '**.c' | |
- '**.h' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: goto-bus-stop/setup-zig@v1 | |
with: | |
version: master | |
- name: Fmt | |
run: zig fmt . --check | |
if: matrix.os == 'ubuntu-latest' | |
- name: Build | |
run: zig build | |
- name: Build 32-bit | |
run: zig build -Dtarget=arm-linux | |
if: matrix.os == 'ubuntu-latest' | |
- name: Build release | |
run: zig build -Doptimize=ReleaseSafe | |
- name: Run Tests | |
run: zig build test |