Skip to content

Commit

Permalink
Create macos.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KRM7 committed Dec 27, 2023
1 parent 23b0b4c commit 4554068
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: macos

on: [push, pull_request]

jobs:
build:
runs-on: macos-13
strategy:
fail-fast: false
matrix:
build-type: [ Release, RelWithDebInfo ]
compiler: [
#{ cxx: g++-11, pkgs: gcc@11, extra-flags: "-undefined dynamic_lookup" },
{ cxx: g++-12, pkgs: gcc@12, extra-flags: "-undefined dynamic_lookup" },
#{ cxx: g++-13, pkgs: gcc@13, extra-flags: "-undefined dynamic_lookup" },
#{ cxx: $(brew --prefix llvm@14)/bin/clang++, pkgs: llvm@14 gcc@11, extra-flags: "-stdlib=libstdc++ -gcc-toolchain=$(brew --prefix gcc@11)" },
{
cxx: $(brew --prefix llvm@15)/bin/clang++, pkgs: llvm@15 gcc@12,
extra-flags: "-femulated-tls -stdlib=libstdc++ -stdlib++-isystem $(brew --prefix gcc@12)/include/c++/12 -cxx-isystem $(brew --prefix gcc@12)/include/c++/12/x86_64-apple-darwin22",
linker-flags: "-L$(brew --prefix gcc@12)/lib/gcc/12"
}
]

defaults:
run:
working-directory: ${{ github.workspace }}/build

name: ${{ matrix.compiler.cxx }}, ${{ matrix.build-type }}

steps:
- name: checkout-repo
uses: actions/checkout@v3

- name: setup-compiler
run: brew update && brew install ${{ matrix.compiler.pkgs }}

- name: setup-catch
run: sudo bash ./install_catch.sh -DCMAKE_CXX_COMPILER=${{ matrix.compiler.cxx }} -DCMAKE_CXX_FLAGS="${{ matrix.compiler.extra-flags }}"

- name: setup-build
run: cmake .. -DCMAKE_CXX_COMPILER=${{ matrix.compiler.cxx }} -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DGAPP_CXX_FLAGS="${{ matrix.compiler.extra-flags }}" -DCMAKE_EXE_LINKER_FLAGS="${{ matrix.compiler.linker-flags }}" -DGAPP_USE_WERROR=OFF -DGAPP_USE_LTO=OFF

- name: build
run: cmake --build . --parallel 8

- name: run-tests
run: ctest --output-on-failure --schedule-random

- name: install
run: sudo cmake --install .

0 comments on commit 4554068

Please sign in to comment.