feat: improving http parser with simd isa(now support sse4.2 and avx2) #322
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu 22.04 (llvm cov) | |
on: | |
pull_request_target: | |
branches: | |
- main | |
- master | |
- cpp20_base | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get install openssl | |
sudo apt-get install libssl-dev | |
sudo apt-get install llvm | |
- name: Run Coverage | |
run: | | |
mkdir build && cd build | |
CC=clang CXX=clang++ cmake .. -DCOVERAGE_TEST=ON -DCINATRA_ENABLE_SSL=ON | |
make -j test_cinatra test_corofile | |
export LLVM_PROFILE_FILE="test_cinatra-%m.profraw" | |
cd tests | |
./test_cinatra ./test_corofile | |
llvm-profdata merge -sparse test_cinatra-*.profraw -o test_cinatra.profdata | |
llvm-cov show ./test_cinatra -instr-profile=test_cinatra.profdata -format=html -output-dir=../.coverage_llvm_cov -ignore-filename-regex="async_simple|thirdparty|tests|asio|util" -show-instantiations=false | |
echo "Done!" | |
- name: Upload Coverage Results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: 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 ./test_cinatra -instr-profile=test_cinatra.profdata -ignore-filename-regex="thirdparty|tests" -show-region-summary=false >> tmp.log | |
echo "\`\`\`" >> tmp.log | |
- name: Create Comment | |
uses: peter-evans/create-or-update-comment@v2 | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body-file: '${{github.workspace}}/build/tests/tmp.log' |