Skip to content

Commit

Permalink
Loop over cpp_standard and build_type in macos CI
Browse files Browse the repository at this point in the history
  • Loading branch information
asuessenbach committed Jan 4, 2024
1 parent 890e32f commit 22ad28e
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@ jobs:

strategy:
matrix:
build_type: [Debug, Release]
compiler:
- {cxx: "g++-11", c: "clang"}
- {cxx: "clang++", c: "clang"}
cxx_standard: [11, 14, 17, 20, 23]
compiler: [clang++-14, g++-11]

steps:
- uses: actions/checkout@v4
Expand All @@ -31,19 +27,23 @@ jobs:
with:
version: 1.11.0

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -GNinja
-DVULKAN_HPP_SAMPLES_BUILD=ON
-DVULKAN_HPP_SAMPLES_BUILD_ONLY_DYNAMIC=ON
-DVULKAN_HPP_SAMPLES_BUILD_WITH_LOCAL_VULKAN_HPP=ON
-DVULKAN_HPP_TESTS_BUILD=ON
-DVULKAN_HPP_TESTS_BUILD_ONLY_DYNAMIC=ON
-DVULKAN_HPP_TESTS_BUILD_WITH_LOCAL_VULKAN_HPP=ON
-DVULKAN_HPP_RUN_GENERATOR=ON
-DCMAKE_CXX_COMPILER=${{matrix.compiler.cxx}}
-DCMAKE_C_COMPILER=${{matrix.compiler.c}}
-DCMAKE_CXX_STANDARD=${{matrix.cxx_standard}}
-DCMAKE_BUILD_TYPE=${{matrix.build_type}}

- name: Build
run: cmake --build ${{github.workspace}}/build --parallel
- name: Loop over cpp_standards (11, 14, ...) and build_types (Debug, Release)
run: |
for cpp_standard in 11 14 17 20 23
do
for build_type in Debug Release
do
cmake -B build/$cpp_standard/$build_type -GNinja \
-DVULKAN_HPP_SAMPLES_BUILD=ON \
-DVULKAN_HPP_SAMPLES_BUILD_ONLY_DYNAMIC=ON \
-DVULKAN_HPP_TESTS_BUILD=ON \
-DVULKAN_HPP_TESTS_BUILD_ONLY_DYNAMIC=ON \
-DVULKAN_HPP_BUILD_WITH_LOCAL_VULKAN_HPP=ON \
-DVULKAN_HPP_PRECOMPILE=OFF \
-DVULKAN_HPP_RUN_GENERATOR=ON \
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} \
-DCMAKE_CXX_STANDARD=$cpp_standard \
-DCMAKE_BUILD_TYPE=$build_type
cmake --build build/$cpp_standard/$build_type --parallel
done
done

0 comments on commit 22ad28e

Please sign in to comment.