summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/ci.yml
blob: d393e962bf6471bedfe02f8bb51438e4ac1c0754 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# 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-unix:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ ubuntu-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 VULKAN_HEADERS_ENABLE_TESTS=ON -D VULKAN_HEADERS_ENABLE_INSTALL=ON -G Ninja
      - run: cmake --build ./build
      - run: cmake --install build/ --prefix build/install
      - run: ctest --output-on-failure
        working-directory: build

  cmake-windows:
    runs-on: windows-latest
    strategy:
      matrix:
        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 VULKAN_HEADERS_ENABLE_TESTS=ON -D VULKAN_HEADERS_ENABLE_INSTALL=ON -G Ninja
      - run: cmake --build ./build
      - run: cmake --install build/ --prefix build/install
      - run: ctest --output-on-failure
        working-directory: build

  windows_clang:
    runs-on: windows-2022
    strategy:
      matrix:
          compiler: [ clang, clang-cl ]
    steps:
        - uses: actions/checkout@v4
        - uses: ilammy/msvc-dev-cmd@v1
        - run: |
            cmake -S . -B build `
            -D CMAKE_C_COMPILER=${{matrix.compiler}} `
            -D CMAKE_CXX_COMPILER=${{matrix.compiler}} `
            -D CMAKE_BUILD_TYPE=Release `
            -D VULKAN_HEADERS_ENABLE_TESTS=ON `
            -D VULKAN_HEADERS_ENABLE_INSTALL=ON `
            -G Ninja
        - run: cmake --build ./build
        - run: cmake --install build/ --prefix build/install
        - run: ctest --output-on-failure
          working-directory: build

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