Skip to content

Commit

Permalink
Refs #21886: TMP dumpbin hello_world.exe
Browse files Browse the repository at this point in the history
Signed-off-by: Mario-DL <[email protected]>
  • Loading branch information
Mario-DL committed Oct 29, 2024
1 parent a39a66e commit 5b927ae
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/reusable-windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 5b927ae

Please sign in to comment.