Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/linux_llvm_cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
- name: Run Coverage
run: |
mkdir build && cd build
mkdir .coverage_llvm_cov
CC=clang-17 CXX=clang++-17 cmake .. -DCOVERAGE_TEST=ON -DCINATRA_ENABLE_SSL=ON
make -j
export LLVM_PROFILE_FILE="test_cinatra-%m.profraw"
Expand All @@ -53,12 +52,11 @@ jobs:
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
Expand Down
Loading