build: Add option for not using llvm to build aro #1942
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: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: mlugg/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 | |
- name: Run Tests in release mode | |
run: zig build test -Doptimize=ReleaseFast |