Skip to content

Commit 5b927ae

Browse files
committed
Refs #21886: TMP dumpbin hello_world.exe
Signed-off-by: Mario-DL <[email protected]>
1 parent a39a66e commit 5b927ae

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

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

+10
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,11 @@ jobs:
132132
destination_workspace: src
133133
skip_existing: 'true'
134134

135+
- name: Install VCTools for Dumpbin
136+
shell: pwsh
137+
run:
138+
choco install visualstudio2019buildtools --package-parameters "--includeRecommended --includeOptional --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64" --no-progress
139+
135140
- name: Build
136141
id: build
137142
continue-on-error: false
@@ -145,6 +150,11 @@ jobs:
145150
cmake_build_type: ${{ matrix.cmake-config }}
146151
workspace: ${{ github.workspace }}
147152

153+
- name: Run Dumpbin
154+
shell: pwsh
155+
run:
156+
"& C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\Hostx64\x64\dumpbin.exe ${{ github.workspace }}\build\fastdds\examples\cpp\hello_world\Release\hello_world.exe"
157+
148158
- name: Test
149159
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-test') }}
150160
id: test

0 commit comments

Comments
 (0)