Skip to content

Commit 1548433

Browse files
Add Debug CI to master nightly job (#5402)
Signed-off-by: eProsima <[email protected]>
1 parent 330add8 commit 1548433

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/nightly-windows-master.yml

+4
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,13 @@ jobs:
1313
security:
1414
- 'ON'
1515
- 'OFF'
16+
cmake_build_type:
17+
- 'Debug'
18+
- 'RelWithDebInfo'
1619
uses: eProsima/Fast-DDS/.github/workflows/reusable-windows-ci.yml@master
1720
with:
1821
label: 'nightly-sec-${{ matrix.security }}-windows-ci-master'
22+
cmake-config: ${{ matrix.cmake_build_type }}
1923
cmake-args: "-DSECURITY=${{ matrix.security }}"
2024
ctest-args: "-LE xfail"
2125
fastdds_branch: 'master'

.github/workflows/reusable-windows-ci.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ on:
2323
description: 'Branch or tag of Fast DDS repository (https://github.com/eProsima/Fast-DDS)'
2424
required: true
2525
type: string
26+
cmake-config:
27+
description: 'CMake configuration to use'
28+
required: false
29+
type: string
30+
default: 'RelWithDebInfo'
2631

2732
defaults:
2833
run:
@@ -34,8 +39,6 @@ jobs:
3439
strategy:
3540
fail-fast: false
3641
matrix:
37-
cmake-config:
38-
- 'RelWithDebInfo'
3942
vs-toolset:
4043
- 'v142'
4144
steps:
@@ -142,7 +145,7 @@ jobs:
142145
# The following Fast DDS CMake options need to be specified here instead of in the meta files
143146
# because they vary from platform to platform
144147
cmake_args_default: ${{ inputs.cmake-args }} -T ${{ matrix.vs-toolset }} -DTHIRDPARTY_Asio=FORCE -DTHIRDPARTY_TinyXML2=FORCE -DTHIRDPARTY_fastcdr=OFF -DTHIRDPARTY_UPDATE=ON -DEPROSIMA_EXTRA_CMAKE_CXX_FLAGS="/MP /WX"
145-
cmake_build_type: ${{ matrix.cmake-config }}
148+
cmake_build_type: ${{ inputs.cmake-config }}
146149
workspace: ${{ github.workspace }}
147150

148151
- name: Test

0 commit comments

Comments
 (0)