aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: 205107c80d99d54fffc222ac94352ac856f8aecd (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
39
40
# Copyright 2022-2023 LunarG, Inc.
#
# SPDX-License-Identifier: Apache-2.0

name: ci

on:
  push:
  pull_request:
    branches:
    - main

env:
  CMAKE_GENERATOR: Ninja
            
permissions:
    contents: read

jobs:
  cmake:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ ubuntu-latest, windows-latest, macos-latest ]
        cmake-version: [ '3.15', 'latest']
    steps:
      - uses: actions/checkout@v4
      - uses: lukka/get-cmake@latest
        with:
          cmakeVersion: ${{ matrix.cmake-version }} 
      - uses: ilammy/msvc-dev-cmd@v1
      - run: cmake -S . -B build -D BUILD_TESTS=ON -G Ninja
      - run: ctest --test-dir build --output-on-failure

  reuse:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: REUSE Compliance Check
      uses: fsfe/reuse-action@v2