File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -47,20 +47,21 @@ jobs:
4747 - name : Build with cov-build
4848 run : |
4949 export PATH="${PWD}/cov-linux64-tool/bin:${PATH}"
50- mkdir build && cd build
50+ # mkdir build && cd build
5151 cmake -DCMAKE_CXX_STANDARD=20 -DCMAKE_BUILD_TYPE=relwithdebinfo \
52- -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc -DTBB_CPF=ON -DTBB_TEST=OFF ..
52+ -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc -DTBB_CPF=ON -DTBB_TEST=OFF .
5353 cov-build --dir cov-int make VERBOSE=1 -j${{env.BUILD_CONCURRENCY}}
5454 - name : Archive Coverity build results
55- run : tar -czvf cov-int.tgz build/cov-int
55+ # run: tar -czvf cov-int.tgz build/cov-int
56+ run : tar -czvf cov-int.tgz cov-int
5657 - name : Submit Coverity results for analysis
5758 run : |
5859 curl \
5960 --form token="${{ secrets.COVERITY_TOKEN }}" \
6061 --form email="${{ secrets.COVERITY_EMAIL }}" \
616262- --form version="${{ inputs.version }} " \
63- --form description="oneTBB-master-${{ env. GITHUB_SHA } }" \
63+ --form version="2022.x " \
64+ --form description="${ GITHUB_SHA}" \
6465 "https://scan.coverity.com/builds?project=${{env.COVERITY_PROJECT}}"
6566 - if : always()
6667 name : Save artifacts
You can’t perform that action at this time.
0 commit comments