From 5b927ae059ad16d8c50bce6da8cb4a184cb4df3d Mon Sep 17 00:00:00 2001 From: Mario-DL Date: Tue, 29 Oct 2024 08:22:49 +0100 Subject: [PATCH] Refs #21886: TMP dumpbin hello_world.exe Signed-off-by: Mario-DL --- .github/workflows/reusable-windows-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/reusable-windows-ci.yml b/.github/workflows/reusable-windows-ci.yml index 5af2cc2b2b..88f3f74b78 100644 --- a/.github/workflows/reusable-windows-ci.yml +++ b/.github/workflows/reusable-windows-ci.yml @@ -132,6 +132,11 @@ jobs: destination_workspace: src skip_existing: 'true' + - name: Install VCTools for Dumpbin + shell: pwsh + run: + choco install visualstudio2019buildtools --package-parameters "--includeRecommended --includeOptional --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64" --no-progress + - name: Build id: build continue-on-error: false @@ -145,6 +150,11 @@ jobs: cmake_build_type: ${{ matrix.cmake-config }} workspace: ${{ github.workspace }} + - name: Run Dumpbin + shell: pwsh + run: + "& 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" + - name: Test if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-test') }} id: test