ci cleanup
This commit is contained in:
parent
8ccd414a46
commit
af4fb97d7b
69
.github/workflows/ci.yml
vendored
69
.github/workflows/ci.yml
vendored
@ -17,69 +17,50 @@ permissions:
|
|||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ubuntu-cmake-install:
|
build-tests:
|
||||||
runs-on: ubuntu-latest
|
name: BUILD_TESTS=ON ${{ matrix.os }}
|
||||||
steps:
|
runs-on: ${{ matrix.os }}
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: lukka/get-cmake@latest
|
|
||||||
with:
|
|
||||||
cmakeVersion: 3.17.0
|
|
||||||
- name: Configure Vulkan-Headers
|
|
||||||
run: cmake -S . -B build
|
|
||||||
- name: Install Vulkan-Headers
|
|
||||||
run: cmake --install build --prefix ${{ github.workspace }}/build/install
|
|
||||||
- name: Test Vulkan-Headers find_package support
|
|
||||||
run: cmake -S tests/find_package -B build/tests/find_package -D CMAKE_PREFIX_PATH=${{ github.workspace }}/build/install
|
|
||||||
|
|
||||||
ubuntu-cmake-tests:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: lukka/get-cmake@latest
|
|
||||||
with:
|
|
||||||
cmakeVersion: 3.25.0
|
|
||||||
- name: Configure Vulkan-Headers
|
|
||||||
run: cmake -S . -B build -D BUILD_TESTS=ON --log-level=DEBUG
|
|
||||||
- name: Build Vulkan-Headers Tests
|
|
||||||
run: cmake --build build
|
|
||||||
|
|
||||||
windows-cmake-tests:
|
|
||||||
runs-on: windows-latest
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
arch: [ amd64, amd64_x86 ]
|
os: [ ubuntu-latest, windows-latest, macos-latest ]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: lukka/get-cmake@latest
|
- uses: lukka/get-cmake@latest
|
||||||
- uses: ilammy/msvc-dev-cmd@v1
|
- uses: ilammy/msvc-dev-cmd@v1
|
||||||
with:
|
- run: cmake -S . -B build -D BUILD_TESTS=ON --log-level=DEBUG
|
||||||
arch: ${{ matrix.arch }}
|
- run: cmake --build build
|
||||||
- name: Configure Vulkan-Headers
|
|
||||||
run: cmake -S . -B build -D BUILD_TESTS=ON --log-level=DEBUG
|
|
||||||
- name: Build Vulkan-Headers Tests
|
|
||||||
run: cmake --build build
|
|
||||||
|
|
||||||
test-cmake-minimum:
|
test-cmake-minimum:
|
||||||
|
name: Test CMake minimum
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: lukka/get-cmake@latest
|
- uses: lukka/get-cmake@latest
|
||||||
with:
|
with:
|
||||||
cmakeVersion: 3.15.0
|
cmakeVersion: 3.15.0
|
||||||
- name: Configure Vulkan-Headers
|
- run: cmake -S . -B build/ --loglevel=DEBUG
|
||||||
run: cmake -S . -B build/ --loglevel=DEBUG
|
- run: cmake --install build/ --prefix build/install
|
||||||
- name: Install Vulkan-Headers
|
|
||||||
run: cmake --install build/ --prefix build/install
|
|
||||||
|
|
||||||
ubuntu-cmake-add_subdirectory:
|
find_package:
|
||||||
|
name: Test find_package
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: lukka/get-cmake@latest
|
- uses: lukka/get-cmake@latest
|
||||||
- name: Test add_subdirectory support
|
with:
|
||||||
run: cmake -S tests/add_subdirectory -B tests/add_subdirectory/build
|
cmakeVersion: 3.17.0
|
||||||
- name: Build
|
- run: cmake -S . -B build
|
||||||
run: cmake --build tests/add_subdirectory/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:
|
reuse:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
Loading…
x
Reference in New Issue
Block a user