Skip to content

Commit 2126500

Browse files
committed
Enable more debug options
1 parent 6551120 commit 2126500

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
cache: false # Disable caching to avoid issues with large pytorch packages
3737

3838
- name: Build
39-
run: pixi run build
39+
run: pixi run build --executor sequential
4040

4141
- name: Test
4242
run: pixi run test --parallel-workers 1

src/bitbots_misc/bitbots_utils/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ if(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE)
1111
set(CMAKE_BUILD_TYPE RelWithDebug)
1212
endif()
1313

14+
set(CMAKE_FIND_DEBUG_MODE ON)
15+
1416
execute_process(COMMAND ${CMAKE_COMMAND} -E sleep 1.0)
1517

1618
message(STATUS "CMAKE_PREFIX_PATH = ${CMAKE_PREFIX_PATH}")

src/bitbots_msgs/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ if(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE)
66
set(CMAKE_BUILD_TYPE RelWithDebug)
77
endif()
88

9+
set(CMAKE_FIND_DEBUG_MODE ON)
10+
911
message(STATUS "CMAKE_PREFIX_PATH = ${CMAKE_PREFIX_PATH}")
1012

1113
execute_process(COMMAND ${CMAKE_COMMAND} -E sleep 1.0)

0 commit comments

Comments
 (0)