Skip to content

Add gcc build

Add gcc build #62

Workflow file for this run

name: macOS
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
env:
CMAKE_GENERATOR: Ninja
HOMEBREW_NO_INSTALL_CLEANUP: 1
jobs:
macos-14:
name: macOS-14
runs-on: macos-14
steps:
- name: Check out code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: brew install ninja conan
- name: Setup conan
run: conan profile detect -f
- name: CMake config
run: >
cmake
-S .
-B build
-G Ninja
-D CMAKE_BUILD_TYPE=Release
-D CMAKE_PROJECT_TOP_LEVEL_INCLUDES=external/cmake-conan/conan_provider.cmake
- name: CMake build
run: cmake --build build