aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/cmake.yml
blob: 8e3eb9792452eb5d14b9bbcb61f32011d9c59547 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: CMake

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  tests:
    name: ${{ matrix.name }}
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: true
      matrix:
        include:
          - name: Debug (Linux)
            os: ubuntu-latest
            build_type: Debug
            
          - name: Debug (MacOS)
            os: macos-latest
            build_type: Debug

          - name: Release (Linux)
            os: ubuntu-latest
            build_type: Release
            
          - name: Release (MacOS)
            os: macos-latest
            build_type: Release

    steps:
    - uses: actions/checkout@v2

    - name: Configure CMake
      run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}

    - name: Build
      run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.build_type }}

    - name: Test
      working-directory: ${{ github.workspace }}/build
      run: ctest -V -C ${{ matrix.build_type }}