Skip to content

Commit

Permalink
Update coverity_scan.yml
Browse files Browse the repository at this point in the history
update build command to avert empty cwd in build metrics
  • Loading branch information
jaimemcc-intel authored Oct 19, 2023
1 parent 0987c16 commit 5b529c5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/coverity_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
- name: Coverity Scan and Upload
run: |
set -x
$GITHUB_WORKSPACE/coverity/bin/cov-build --dir $GITHUB_WORKSPACE/cov-int --no-command --fs-capture-search $GITHUB_WORKSPACE/gpt-neox
pushd $GITHUB_WORKSPACE
cd $GITHUB_WORKSPACE/gpt-neox
$GITHUB_WORKSPACE/coverity/bin/cov-build --dir $GITHUB_WORKSPACE/cov-int --no-command --fs-capture-search ./
tar caf build-results.bz2 cov-int
curl --form token=$COVERITY_TOKEN \
--form email=$COV_USER \
Expand Down

0 comments on commit 5b529c5

Please sign in to comment.