Skip to content

Commit

Permalink
Refs #19727. Fix report steps.
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
  • Loading branch information
MiguelCompany committed Oct 20, 2023
1 parent cb030e9 commit fa3eb62
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/thread-sanitizer-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,13 @@ jobs:
continue-on-error: true
run: |
# Create a dir for the exports
$exports = New-Item -ItemType Directory -Path ./ws/exports
$exports = New-Item -ItemType Directory -Path ./exports
# Move to the reports dir
pushd ./ws/build/fastdds/reports
pushd ./log/latest_test/fastrtps
# Install the report parser module
Find-Module -Repository PSGallery -Name SanReportParser | Install-Module -Scope CurrentUser -Force
# Parse the report files
$rp = Show-Tsan (gci)
$rp = Show-Tsan -Path ./stdout_stderr.log
# filter duplicates
$rp = $rp | group md5hash | % { $_.group[0] }
# Export raw data
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: sanitation-report
path: /home/runner/work/ws/exports/*
path: exports/*

- name: Check on failures
if: ${{ steps.report_summary.outcome == 'failure' }}
Expand Down

0 comments on commit fa3eb62

Please sign in to comment.