Fixing compilation on GCC 11.x #39
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-macos | |
on: | |
push: | |
paths: | |
- '**' | |
- '!COPYING' | |
- '!COPYING-asm' | |
- '!INSTALL' | |
- '!**.md' | |
- '!.clang*' | |
- '!.gitignore' | |
- '!.gitattributes' | |
- '!.github/workflows/*' | |
- '.github/workflows/ci-macos.yml' | |
pull_request: | |
paths: | |
- '**' | |
- '!COPYING' | |
- '!COPYING-asm' | |
- '!INSTALL' | |
- '!**.md' | |
- '!.clang*' | |
- '!.gitignore' | |
- '!.gitattributes' | |
- '!.github/workflows/*' | |
- '.github/workflows/ci-macos.yml' | |
jobs: | |
ci-macos: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
generator: [make, ninja] | |
include: | |
- generator: make | |
cmake_generator: "Unix Makefiles" | |
- generator: ninja | |
cmake_generator: "Ninja" | |
steps: | |
- name: Install dependencies | |
run: | | |
brew install boost make ninja llvm | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Configure | |
run: | | |
export LDFLAGS="-L$(brew --prefix boost)/lib -L$(brew --prefix llvm)/lib $LDFLAGS" | |
export CFLAGS="-I$(brew --prefix boost)/include -I$(brew --prefix llvm)/include $CFLAGS" | |
export CXXFLAGS="-I$(brew --prefix boost)/include -I$(brew --prefix llvm)/include $CXXFLAGS" | |
export CC="$(brew --prefix llvm)/bin/clang" | |
export CXX="$(brew --prefix llvm)/bin/clang++" | |
cmake -S . -B build -G "${{ matrix.cmake_generator }}" | |
- name: Build | |
run: | | |
cmake --build build -j2 |