From 24ce771ec10046bd128c22e2e2cb2a17e3f8ade3 Mon Sep 17 00:00:00 2001 From: Jan Kuhlmann <33833587+M2-TE@users.noreply.github.com> Date: Fri, 21 Mar 2025 10:35:31 +0100 Subject: [PATCH] fixed linewrap on windows and CXX compiler on ubuntu --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ecbd6f..6c86cd8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,7 +98,7 @@ jobs: -G Ninja - run: cmake --build ./build - run: cmake --install build/ --prefix build/install - - run: ctest --output-on-failure + - run: ctest --output-on-failure -D CMAKE_CXX_COMPILER=${{ matrix.compiler }} working-directory: build cmake-windows-modules: @@ -115,11 +115,11 @@ jobs: cmakeVersion: ${{ matrix.cmake-version }} - uses: ilammy/msvc-dev-cmd@v1 - run: | - cmake -S . -B build \ - -D VULKAN_HEADERS_ENABLE_TESTS=ON \ - -D VULKAN_HEADERS_ENABLE_INSTALL=ON \ - -D VULKAN_HEADERS_ENABLE_MODULE=ON \ - -D VULKAN_HEADERS_ENABLE_MODULE_STD=OFF \ + cmake -S . -B build ` + -D VULKAN_HEADERS_ENABLE_TESTS=ON ` + -D VULKAN_HEADERS_ENABLE_INSTALL=ON ` + -D VULKAN_HEADERS_ENABLE_MODULE=ON ` + -D VULKAN_HEADERS_ENABLE_MODULE_STD=OFF ` -G Ninja - run: cmake --build ./build - run: cmake --install build/ --prefix build/install