Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ permissions: read-all

jobs:
coverity:
if: github.repository == 'intel/llvm'
name: Coverity
runs-on: [Linux, build]
container:
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:alldeps
image: ghcr.io/intel/llvm/ubuntu2404_build:latest
Copy link
Contributor

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.

Copy link
Contributor Author

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?

Copy link
Contributor Author

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

options: -u 1001:1001

steps:
Expand Down Expand Up @@ -52,7 +53,7 @@ jobs:
run: $GITHUB_WORKSPACE/cov-analysis-linux64-*/bin/cov-build --dir cov-int cmake --build $GITHUB_WORKSPACE/build

- name: Compress results
run: tar -czf intel_llvm.tgz cov-int
run: tar -I pigz -cf intel_llvm.tgz cov-int

- name: Submit build
run: |
Expand Down
Loading