Skip to content

Commit

Permalink
Update coverity_scan.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimemcc-intel authored Oct 19, 2023
1 parent e001a04 commit 94ddcc0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/coverity_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
path: 'gpt-neox'

- name: Install utils
run: |
Expand All @@ -38,11 +40,14 @@ jobs:
- name: Coverity Scan
run: |
set -x
$GITHUB_WORKSPACE/bin/cov-build --dir cov-int --no-command --fs-capture-search $GITHUB_WORKSPACE
pushd $GITHUB_WORKSPACE
cd $GITHUB_WORKSPACE/gpt-neox
$GITHUB_WORKSPACE/bin/cov-build --dir $GITHUB_WORKSPACE/cov-int --no-command --fs-capture-search ./
popd
- name: Coverity Upload
run: |
tar caf build-results.bz2 cov-int
tar caf $GITHUB_WORKSPACE/build-results.bz2 $GITHUB_WORKSPACE/cov-int
curl --form token=$COV_PASSPHRASE \
--form email=$COV_USER \
--form file=@GITHUB_WORKSPACE/build-results.bz2 \
Expand Down

0 comments on commit 94ddcc0

Please sign in to comment.