Skip to content

Commit cdc17a2

Browse files
[CI] Fix coverity workflow
1 parent 99d8f4f commit cdc17a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/coverity.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
coverity:
1515
name: Coverity
1616
# run only on upstream; forks don't have token for upstream's cov project
17-
if: github.repository == 'oneapi-src/unified-memory-framework'
17+
if: github.repository == 'oneapi-src/unified-runtime'
1818
runs-on: ubuntu-latest
1919

2020
steps:
@@ -64,18 +64,18 @@ jobs:
6464
if [ -n "$COVERITY_DIR" ]; then
6565
export PATH="$PATH:$COVERITY_DIR/bin"
6666
fi
67-
cov-build --dir ${{github.workspace}}/coverity-files cmake --build ${{github.workspace}}/build --config Release -j$(nproc)
67+
cov-build --dir ${{github.workspace}}/cov-int cmake --build ${{github.workspace}}/build --config Release -j$(nproc)
6868
6969
- name: Create tarball to analyze
70-
run: tar czvf ur-coverity-files.tgz coverity-files
70+
run: tar czvf cov-int_ur.tgz cov-int
7171

7272
- name: Push tarball to scan
7373
run: |
7474
BRANCH_NAME=$(echo ${GITHUB_REF_NAME})
7575
COMMIT_ID=$(echo $GITHUB_SHA)
7676
curl --form token=${{ secrets.COVERITY_SCAN_TOKEN }} \
7777
78-
--form file=@ur-coverity-files.tgz \
78+
--form file=@cov-int_ur.tgz \
7979
--form version="$COMMIT_ID" \
8080
--form description="$BRANCH_NAME:$COMMIT_ID" \
8181
https://scan.coverity.com/builds\?project\=oneapi-src%2Funified-runtime

0 commit comments

Comments
 (0)