🎨 Build out of tree and mp_vector macros #427
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: MacOs | |
on: [push, pull_request] | |
env: | |
CFLAGS: -fsanitize=address -fno-omit-frame-pointer | |
LDFLAGS: -fsanitize=address -fno-omit-frame-pointer | |
jobs: | |
build: | |
name: MacOS ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}} | |
runs-on: macos-latest | |
env: | |
CC: ${{ matrix.cc }} | |
USE_DOUBLE: ${{ matrix.double }} | |
strategy: | |
matrix: | |
cc: [gcc, clang] | |
double: [0, 1] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Util lib | |
uses: ./.github/workflows/util | |
- name: Build | |
run: | | |
git submodule update --init | |
make | |
env: | |
UTIL_DIR: ./gwion-util |