BUILD: Extend boost.m4 to recognize new gcc and clang versions #24
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: macos cmake clang | |
on: | |
[push, pull_request] | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
id: install_dependencies | |
run: brew install ninja boost | |
- name: Set clang as the compiler to use | |
id: set_clang | |
run: | | |
echo "CC=clang" >> $GITHUB_ENV | |
echo "CXX=clang++" >> $GITHUB_ENV | |
- name: Configure | |
id: configure | |
run: cmake -G Ninja . | |
- name: Compile | |
id: compile | |
run: cmake --build . | |
- name: Build and run unit tests | |
id: run_unit_tests | |
run: cmake --build . --target check |