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:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
build_type: [Debug, Release]
|
2022-07-07 08:22:21 +00:00
|
|
|
compiler:
|
|
|
|
- {cxx: "g++-9", c: "gcc-9"}
|
|
|
|
- {cxx: "g++-10", c: "gcc-10"}
|
2022-12-06 22:17:47 +00:00
|
|
|
- {cxx: "g++-11", c: "gcc-11"}
|
|
|
|
- {cxx: "clang++-13", c: "clang-13"}
|
|
|
|
- {cxx: "clang++-14", c: "clang-14"}
|
2021-06-07 14:19:08 +00:00
|
|
|
cxx_standard: [11, 14, 17, 20]
|
|
|
|
|
|
|
|
steps:
|
2023-01-19 07:11:46 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
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
|
2021-06-07 14:19:08 +00:00
|
|
|
|
|
|
|
- name: Configure CMake
|
2022-07-07 08:22:21 +00:00
|
|
|
run: cmake -B ${{github.workspace}}/build -GNinja
|
2023-06-20 12:43:35 +00:00
|
|
|
-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
|
2021-06-07 14:19:08 +00:00
|
|
|
-DVULKAN_HPP_RUN_GENERATOR=ON
|
2022-07-07 08:22:21 +00:00
|
|
|
-DCMAKE_CXX_COMPILER=${{matrix.compiler.cxx}}
|
|
|
|
-DCMAKE_C_COMPILER=${{matrix.compiler.c}}
|
2021-06-07 14:19:08 +00:00
|
|
|
-DCMAKE_CXX_STANDARD=${{matrix.cxx_standard}}
|
2022-07-07 08:22:21 +00:00
|
|
|
-DCMAKE_BUILD_TYPE=${{matrix.build_type}}
|
2021-06-07 14:19:08 +00:00
|
|
|
|
|
|
|
- name: Build
|
2022-07-07 08:22:21 +00:00
|
|
|
run: cmake --build ${{github.workspace}}/build --parallel
|