aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/cmake.yml
blob: f8dba948319aa7c16af6c1010da2a31b8e09a8ea (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: CMake

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

env:
  TESTVAR_NIX: "/usr/local/bin:/usr/bin:/bin"
  TESTVAR_WIN: "C:/usr/local/bin;C:/usr/bin;C:/bin"
  SHELL: "/bin/bash"

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: Debug (Windows)
            os: windows-latest
            build_type: Debug
            
          - name: Release (Linux)
            os: ubuntu-latest
            build_type: Release
            
          - name: Release (MacOS)
            os: macos-latest
            build_type: Release

          - name: Release (Windows)
            os: windows-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 }}