2021-06-07 14:19:08 +00:00
|
|
|
|
|
|
|
name: CI Ubuntu
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2023-01-20 17:51:43 +00:00
|
|
|
branches: [ main ]
|
2021-06-07 14:19:08 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-01-04 14:40:18 +00:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
2021-06-07 14:19:08 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-09-04 13:37:01 +00:00
|
|
|
os: [ubuntu-20.04, ubuntu-22.04]
|
|
|
|
compiler: [g++-10]
|
|
|
|
include:
|
|
|
|
- os: ubuntu-20.04
|
|
|
|
compiler: clang++-10
|
|
|
|
- os: ubuntu-20.04
|
|
|
|
compiler: clang++-11
|
|
|
|
- os: ubuntu-20.04
|
|
|
|
compiler: clang++-12
|
|
|
|
- os: ubuntu-22.04
|
|
|
|
compiler: clang++-13
|
|
|
|
- os: ubuntu-22.04
|
|
|
|
compiler: clang++-14
|
|
|
|
- os: ubuntu-22.04
|
|
|
|
compiler: clang++-15
|
|
|
|
- os: ubuntu-22.04
|
|
|
|
compiler: g++-11
|
|
|
|
- os: ubuntu-22.04
|
|
|
|
compiler: g++-12
|
|
|
|
|
|
|
|
runs-on: ${{matrix.os}}
|
2021-06-07 14:19:08 +00:00
|
|
|
|
|
|
|
steps:
|
2023-09-28 14:39:48 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-01-19 07:11:46 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2024-01-04 14:40:18 +00:00
|
|
|
|
2021-06-07 14:19:08 +00:00
|
|
|
- name: Install libraries
|
2022-03-10 15:30:59 +00:00
|
|
|
run: sudo apt update && sudo apt install libgl-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev
|
2021-06-07 14:19:08 +00:00
|
|
|
|
2022-07-07 08:22:21 +00:00
|
|
|
- name: Install Ninja
|
|
|
|
uses: ashutoshvarma/setup-ninja@master
|
|
|
|
with:
|
|
|
|
version: 1.11.0
|
2024-01-04 14:40:18 +00:00
|
|
|
|
|
|
|
- name: Loop over cpp_standards (11, 14, ...) and build_types (Debug, Release)
|
|
|
|
run: |
|
|
|
|
for cpp_standard in 11 14 17 20
|
|
|
|
do
|
|
|
|
for build_type in Debug Release
|
|
|
|
do
|
2024-09-04 13:37:01 +00:00
|
|
|
echo "================================================================================="
|
|
|
|
echo "Building C++" $cpp_standard " in " $build_type " mode on " ${{matrix.os}} " with " ${{matrix.compiler}}
|
|
|
|
echo "================================================================================="
|
2024-01-04 14:40:18 +00:00
|
|
|
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
|
|
|
|
|
2024-07-17 11:18:25 +00:00
|
|
|
- name: Loop over build_types (Debug, Release) with cpp_standard 23 for compilers supporting that
|
2024-01-04 14:40:18 +00:00
|
|
|
run: |
|
2024-09-04 13:37:01 +00:00
|
|
|
if [[ ${{matrix.compiler}} != clang++-10 && ${{matrix.compiler}} != clang++-11 && ${{matrix.compiler}} != g++-10 ]]
|
2024-01-04 14:40:18 +00:00
|
|
|
then
|
|
|
|
cpp_standard=23
|
2024-09-04 13:37:01 +00:00
|
|
|
echo "================================================================================="
|
|
|
|
echo "Building C++" $cpp_standard " in " $build_type " mode on " ${{matrix.os}} " with " ${{matrix.compiler}}
|
|
|
|
echo "================================================================================="
|
2024-01-04 14:40:18 +00:00
|
|
|
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
|
|
|
|
|