Loop over cpp_standard and build_type in ubuntu CI (#1763)

This commit is contained in:
Andreas Süßenbach 2024-01-04 15:40:18 +01:00 committed by GitHub
parent db5c141013
commit 890e32f27b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,21 +8,20 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
defaults:
run:
shell: bash
strategy: strategy:
matrix: matrix:
build_type: [Debug, Release]
compiler: [clang++-13, clang++-14, g++-9, g++-10, g++-11] compiler: [clang++-13, clang++-14, g++-9, g++-10, g++-11]
cxx_standard: [11, 14, 17, 20]
include:
- compiler: g++-11
cxx_standard: 23
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
submodules: recursive submodules: recursive
- name: Install libraries - name: Install libraries
run: sudo apt update && sudo apt install libgl-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev run: sudo apt update && sudo apt install libgl-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev
@ -30,19 +29,47 @@ jobs:
uses: ashutoshvarma/setup-ninja@master uses: ashutoshvarma/setup-ninja@master
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
-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}} -DVULKAN_HPP_TESTS_BUILD=ON \
-DCMAKE_CXX_STANDARD=${{matrix.cxx_standard}} -DVULKAN_HPP_TESTS_BUILD_ONLY_DYNAMIC=ON \
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DVULKAN_HPP_BUILD_WITH_LOCAL_VULKAN_HPP=ON \
-DVULKAN_HPP_PRECOMPILE=OFF \
- name: Build -DVULKAN_HPP_RUN_GENERATOR=ON \
run: cmake --build ${{github.workspace}}/build --parallel -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
- name: Loop over build_types (Debug, Release) with cpp_standard 23 for g++-11 only
run: |
if [ ${{matrix.compiler}} == g++-11 ]
then
cpp_standard=23
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
fi