summaryrefslogtreecommitdiff
path: root/.github/workflows/cmake.yml
blob: d9fa86c04872f8a8ecc1b37a82c2954c4d37e04a (plain)
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
name: CMake

on:
  push:
  pull_request:
  schedule:
    - cron: '0 0 1 * *'

jobs:
  build:
    strategy:
      matrix:
        os:
          [
            ubuntu-latest,
            macos-latest,
            windows-latest,
          ]

    runs-on: ${{ matrix.os }}

    env:
      BUILD: _build

    steps:
      - uses: actions/checkout@v2

      - name: Prepare build directory
        run: mkdir ${{ env.BUILD }}

      - name: Generate
        run: cmake -S . -B ${{ env.BUILD }}

      - name: Build
        run: cmake --build ${{ env.BUILD }}

      - name: Test
        run: ctest --test-dir ${{ env.BUILD }} -V -C Debug