Skip to content

Commit a257b5b

Browse files
committed
Don't create build directory
1 parent b2fe19e commit a257b5b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/coverity.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff 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 }}" \
6162
62-
--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

0 commit comments

Comments
 (0)