build-macos.yml (1086B)
1 name: Build on macOS 2 on: 3 push: 4 branches: [ "**" ] 5 pull_request: 6 branches: [ "**" ] 7 jobs: 8 build: 9 runs-on: ${{ matrix.os }} 10 strategy: 11 fail-fast: false 12 matrix: 13 os: [macos-12, macos-11] 14 build_type: [Release] 15 c_compiler: [gcc, clang] 16 steps: 17 - uses: actions/checkout@v3 18 - name: Set reusable strings 19 id: strings 20 shell: bash 21 run: | 22 echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" 23 - name: Configure CMake 24 run: > 25 cmake -B ${{ steps.strings.outputs.build-output-dir }} 26 -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} 27 -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} 28 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} 29 -DENABLE_TESTS=1 30 -S ${{ github.workspace }} 31 - name: Build 32 run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} 33 - name: Test 34 working-directory: ${{ steps.strings.outputs.build-output-dir }} 35 run: ctest --build-config ${{ matrix.build_type }}