mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2024-10-14 16:32:17 +00:00
Loop over cpp_standard and build_type in macos CI (#1766)
This commit is contained in:
parent
890e32f27b
commit
d127fea13f
42
.github/workflows/ci-macos.yml
vendored
42
.github/workflows/ci-macos.yml
vendored
@ -11,11 +11,7 @@ jobs:
|
|||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
build_type: [Debug, Release]
|
compiler: [clang++, g++-11]
|
||||||
compiler:
|
|
||||||
- {cxx: "g++-11", c: "clang"}
|
|
||||||
- {cxx: "clang++", c: "clang"}
|
|
||||||
cxx_standard: [11, 14, 17, 20, 23]
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@ -31,19 +27,23 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
version: 1.11.0
|
version: 1.11.0
|
||||||
|
|
||||||
- name: Configure CMake
|
- name: Loop over cpp_standards (11, 14, ...) and build_types (Debug, Release)
|
||||||
run: cmake -B ${{github.workspace}}/build -GNinja
|
run: |
|
||||||
-DVULKAN_HPP_SAMPLES_BUILD=ON
|
for cpp_standard in 11 14 17 20 23
|
||||||
-DVULKAN_HPP_SAMPLES_BUILD_ONLY_DYNAMIC=ON
|
do
|
||||||
-DVULKAN_HPP_SAMPLES_BUILD_WITH_LOCAL_VULKAN_HPP=ON
|
for build_type in Debug Release
|
||||||
-DVULKAN_HPP_TESTS_BUILD=ON
|
do
|
||||||
-DVULKAN_HPP_TESTS_BUILD_ONLY_DYNAMIC=ON
|
cmake -B build/$cpp_standard/$build_type -GNinja \
|
||||||
-DVULKAN_HPP_TESTS_BUILD_WITH_LOCAL_VULKAN_HPP=ON
|
-DVULKAN_HPP_SAMPLES_BUILD=ON \
|
||||||
-DVULKAN_HPP_RUN_GENERATOR=ON
|
-DVULKAN_HPP_SAMPLES_BUILD_ONLY_DYNAMIC=ON \
|
||||||
-DCMAKE_CXX_COMPILER=${{matrix.compiler.cxx}}
|
-DVULKAN_HPP_TESTS_BUILD=ON \
|
||||||
-DCMAKE_C_COMPILER=${{matrix.compiler.c}}
|
-DVULKAN_HPP_TESTS_BUILD_ONLY_DYNAMIC=ON \
|
||||||
-DCMAKE_CXX_STANDARD=${{matrix.cxx_standard}}
|
-DVULKAN_HPP_BUILD_WITH_LOCAL_VULKAN_HPP=ON \
|
||||||
-DCMAKE_BUILD_TYPE=${{matrix.build_type}}
|
-DVULKAN_HPP_PRECOMPILE=OFF \
|
||||||
|
-DVULKAN_HPP_RUN_GENERATOR=ON \
|
||||||
- name: Build
|
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} \
|
||||||
run: cmake --build ${{github.workspace}}/build --parallel
|
-DCMAKE_CXX_STANDARD=$cpp_standard \
|
||||||
|
-DCMAKE_BUILD_TYPE=$build_type
|
||||||
|
cmake --build build/$cpp_standard/$build_type --parallel
|
||||||
|
done
|
||||||
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user