-
Notifications
You must be signed in to change notification settings - Fork 791
[CI] Use pigz in coverity #16943
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CI] Use pigz in coverity #16943
Conversation
It takes ~10mins for gzip to compress the cov-int dir. Use pigz (parallel implementation of gzip) to speed it up.
@intel/dpcpp-devops-reviewers actually there is no pigz in our images. For some reason "apt install pigz" doesn't work, see - https://github.com/intel/llvm/actions/runs/13241613101/job/36958055373:
Should I use |
It's because the IGC CI creates weird deb packges. Locally, you can use |
@sarnex @aelovikov-intel can we merge this now? |
.github/workflows/coverity.yml
Outdated
runs-on: [Linux, build] | ||
container: | ||
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:alldeps | ||
image: ghcr.io/intel/llvm/ubuntu2404_build:latest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this? We want to gradually switch to "alldeps" everywhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ubuntu2404_intel_drivers
is the only one that have alldeps
, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved back to alldeps - addd00f
@intel/llvm-gatekeepers could you please merge? |
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