Skip to content

Commit

Permalink
GHI #32 Debug GitHub Actions (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
doodspav committed Jul 8, 2024
1 parent 1617423 commit 0d665ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/_reusable-test-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,17 +204,17 @@ jobs:
else # [[ "${{ inputs.os }}" == "ubuntu" ]]; then
sudo apt install llvm
fi
# merge coverage output from all tests
# use find because bash on GitHub Actions currently does not support '**'
find test/working -type f -name "*.profraw" -print0 | xargs -0 ${prefix}llvm-profdata merge -output=patomic.profdata
# debug: print everything
apt install tree
echo "tree ."
tree .
echo "tree test/working"
tree test/working
# merge coverage output from all tests
# use find because bash on GitHub Actions currently does not support '**'
find test/working -type f -name "*.profraw" -print0 | xargs -0 ${prefix}llvm-profdata merge -output=patomic.profdata
# convert profdata to lcov tracefile, and copy to upload
lib_files=(libpatomic.*) # matches shared/static lib files and symlinks
Expand Down

0 comments on commit 0d665ed

Please sign in to comment.