Skip to content

Commit

Permalink
Debug paths
Browse files Browse the repository at this point in the history
Signed-off-by: Mario Dominguez <[email protected]>
  • Loading branch information
Mario-DL committed Oct 29, 2024
1 parent e20ba57 commit 13860fc
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 @@ -158,6 +163,11 @@ jobs:
workspace: ${{ github.workspace }}
test_report_artifact: ${{ format('test_report_{0}_{1}_{2}', inputs.label, github.job, join(matrix.*, '_')) }}

- name: Run Dumpbin
shell: pwsh
run:
ls ${{ github.workspace }}\build\fastdds\examples\cpp\;ls ${{ github.workspace }}\build\fastdds\examples\cpp\hello_world; ls ${{ github.workspace }}\build\fastdds\examples\cpp\hello_world\RelWithDebInfo; C:\"Program Files (x86)"\"Microsoft Visual Studio"\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\Hostx64\x64\dumpbin.exe /DEPENDENTS ${{ github.workspace }}\build\fastdds\examples\cpp\hello_world\Release\hello_world.exe

- name: Test summary
uses: eProsima/eProsima-CI/windows/junit_summary@v0
if: ${{ !cancelled() && !contains(github.event.pull_request.labels.*.name, 'no-test') }}
Expand Down

0 comments on commit 13860fc

Please sign in to comment.