Skip to content

Commit 1d5c967

Browse files
authored
[CI] Use pigz in coverity (#16943)
It takes ~10mins for gzip to compress the cov-int dir. Use pigz (parallel implementation of gzip) to speed it up. formats supported by coverity: gzip, zip, lzma, xz or bz2 #16945
1 parent 1f8f0d0 commit 1d5c967

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/coverity.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ permissions: read-all
88

99
jobs:
1010
coverity:
11+
if: github.repository == 'intel/llvm'
1112
name: Coverity
1213
runs-on: [Linux, build]
1314
container:
@@ -52,7 +53,7 @@ jobs:
5253
run: $GITHUB_WORKSPACE/cov-analysis-linux64-*/bin/cov-build --dir cov-int cmake --build $GITHUB_WORKSPACE/build
5354

5455
- name: Compress results
55-
run: tar -czf intel_llvm.tgz cov-int
56+
run: tar -I pigz -cf intel_llvm.tgz cov-int
5657

5758
- name: Submit build
5859
run: |

0 commit comments

Comments
 (0)