Skip to content

Commit

Permalink
Test conv1 (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
qicosmos authored Nov 7, 2024
1 parent 92ad28a commit c748d1c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/linux_llvm_cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,23 +49,24 @@ jobs:
- name: List files in the repository
run: |
echo "workspace"
ls ${{ github.workspace }}
ls ../
ls ../.coverage_llvm_cov
echo "workspace/build"
ls ${{ github.workspace }}/build
- name: Upload Coverage Results
uses: actions/[email protected]
with:
name: llvm-cov
path: ../.coverage_llvm_cov
path: ${{ github.workspace }}/build/.coverage_llvm_cov

- name: Create Code Coverage Report
working-directory: ${{github.workspace}}/build/tests
run: |
echo "Code Coverage Report" > tmp.log
echo "for detail, [goto summary](https://github.com/${{ github.repository_owner }}/${{ github.event.repository.name }}/actions/runs/${{github.run_id}}) download Artifacts `llvm-cov`" >> tmp.log
echo "\`\`\`" >> tmp.log
llvm-cov report -object test_cinatra -object test_corofile -object test_time_util -object test_http_parse -instr-profile=test_cinatra.profdata -ignore-filename-regex="example|asio|cmdline|async_simple|tests" -show-region-summary=false >> tmp.log
llvm-cov report -object test_cinatra -object test_corofile -object test_time_util -object test_http_parse -object test_metric -instr-profile=test_cinatra.profdata -ignore-filename-regex="example|asio|cmdline|async_simple|tests" -show-region-summary=false >> tmp.log
echo "\`\`\`" >> tmp.log
- name: Create Comment
Expand Down

0 comments on commit c748d1c

Please sign in to comment.