Skip to content

Commit 07f9db2

Browse files
authored
Enforce Debug build type for faster CI
1 parent 9c402ed commit 07f9db2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
env:
1717
CMAKE_C_COMPILER_LAUNCHER: ccache
1818
CMAKE_CXX_COMPILER_LAUNCHER: ccache
19+
CMAKE_BUILD_TYPE: Debug
1920

2021
jobs:
2122
maybe_skip:
@@ -48,9 +49,10 @@ jobs:
4849
- { os: ubuntu-24.04, compiler: { cc: gcc-13, cxx: g++-13 } }
4950
- { os: ubuntu-24.04, compiler: { cc: clang-18, cxx: clang++-18 } }
5051
robotology:
51-
- { yarp: yarp-3.11, cmake: 3.19.x }
52-
- { yarp: yarp-3.12, cmake: 3.19.x }
53-
- { yarp: master, cmake: 3.19.x }
52+
# CMake 3.22 instead of 3.19 because of the CMAKE_BUILD_TYPE env var
53+
- { yarp: yarp-3.11, cmake: 3.22.x }
54+
- { yarp: yarp-3.12, cmake: 3.22.x }
55+
- { yarp: master, cmake: 3.22.x }
5456
experimental:
5557
- ${{github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}}
5658
exclude:

0 commit comments

Comments
 (0)