71 lines
1.8 KiB
YAML
71 lines
1.8 KiB
YAML
# 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:
|
|
build-tests:
|
|
name: BUILD_TESTS=ON ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ ubuntu-latest, windows-latest, macos-latest ]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: lukka/get-cmake@latest
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
- run: cmake -S . -B build -D BUILD_TESTS=ON --log-level=DEBUG
|
|
- run: cmake --build build
|
|
|
|
test-cmake-minimum:
|
|
name: Test CMake minimum
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: lukka/get-cmake@latest
|
|
with:
|
|
cmakeVersion: 3.15.0
|
|
- run: cmake -S . -B build/ --loglevel=DEBUG
|
|
- run: cmake --install build/ --prefix build/install
|
|
|
|
find_package:
|
|
name: Test find_package
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: lukka/get-cmake@latest
|
|
with:
|
|
cmakeVersion: 3.17.0
|
|
- run: cmake -S . -B build
|
|
- run: cmake --install build --prefix ${{ github.workspace }}/build/install
|
|
- run: cmake -S tests/find_package -B build/tests/find_package -D CMAKE_PREFIX_PATH=${{ github.workspace }}/build/install
|
|
|
|
add_subdirectory:
|
|
name: Test add_subdirectory
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: lukka/get-cmake@latest
|
|
- run: cmake -S tests/add_subdirectory -B tests/add_subdirectory/build
|
|
- run: cmake --build tests/add_subdirectory/build
|
|
|
|
reuse:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: REUSE Compliance Check
|
|
uses: fsfe/reuse-action@v2
|