Skip to content

Commit

Permalink
Try to debug windows CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonMatthesKDAB committed Jun 11, 2024
1 parent 856bd49 commit 7d20b42
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ jobs:
run: cmake --preset=ci

- name: Build Project
run: cmake --build --preset=ci
run: cmake --build --preset=ci --verbose

- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: false

- name: Run tests
run: ctest --preset=ci
Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@

cmake_minimum_required(VERSION 3.12) # for `project(... HOMEPAGE_URL ...)`

cmake_policy(SET CMP0141 NEW)

project(KDBindings
DESCRIPTION "Bindings, from the comfort and speed of C++ and without Qt"
LANGUAGES CXX
Expand Down
3 changes: 2 additions & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"generator": "Ninja",
"binaryDir": "${sourceDir}/build-ci",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_MSVC_DEBUG_INFORMATION_FORMAT": "Embedded",
"CMAKE_EXPORT_COMPILE_COMMANDS" : "ON",
"KDBindings_TESTS" : "ON",
"KDBindings_EXAMPLES" : "ON",
Expand Down

0 comments on commit 7d20b42

Please sign in to comment.