Switch to conanfile.py #35
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: Build | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
env: | |
HOMEBREW_NO_INSTALL_CLEANUP: 1 | |
jobs: | |
build: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
env: | |
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.osx_target }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Linux | |
os: ubuntu-24.04 | |
osx_target: "" | |
cmake_flags: "" | |
cxx_flags: "-march=x86-64-v2" | |
- name: macOS-X64 | |
os: macos-13 | |
osx_target: "10.15" | |
cmake_flags: "-D CMAKE_C_COMPILER=/usr/local/opt/llvm/bin/clang -D CMAKE_CXX_COMPILER=/usr/local/opt/llvm/bin/clang++" | |
cxx_flags: "-march=x86-64-v2" | |
- name: macOS-ARM64 | |
os: macos-14 | |
osx_target: "11.0" | |
cmake_flags: "-D CMAKE_C_COMPILER=/opt/homebrew/opt/llvm/bin/clang -D CMAKE_CXX_COMPILER=/opt/homebrew/opt/llvm/bin/clang++" | |
cxx_flags: "" | |
# - name: Windows | |
# os: windows-latest | |
# osx_target: "" | |
# cmake_flags: "" | |
# cxx_flags: "-march=x86-64-v2" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Install dependencies (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt update -y | |
sudo apt install -y libomp-dev ninja-build | |
pip3 install --break-system-packages conan | |
- name: Install dependencies (macOS) | |
if: runner.os == 'macOS' | |
run: brew install conan ninja llvm | |
- name: Install dependencies (Windows) | |
if: runner.os == 'Windows' | |
shell: bash | |
run: | | |
choco install ninja | |
pip3 install --upgrade conan | |
- name: Install clang | |
if: runner.os != 'macOS' | |
uses: egor-tensin/setup-clang@v1 | |
- name: Setup conan | |
run: | | |
conan profile detect -f | |
git clone https://github.com/conan-io/cmake-conan.git -b develop2 external/cmake-conan | |
- name: CMake configure | |
run: > | |
cmake | |
-B build | |
-G Ninja | |
-D CMAKE_BUILD_TYPE=Release | |
-D CMAKE_CXX_FLAGS="${{ matrix.cxx_flags }}" | |
-D CMAKE_PROJECT_TOP_LEVEL_INCLUDES=external/cmake-conan/conan_provider.cmake | |
${{ matrix.cmake_flags }} | |
- name: CMake build | |
run: cmake --build build | |
# - name: CTest | |
# run: ctest --test-dir build -C Release --output-on-failure -j 1 |