Skip to content

Commit

Permalink
Copy final archive out of container
Browse files Browse the repository at this point in the history
  • Loading branch information
BtbN committed Nov 9, 2022
1 parent 181f38b commit 053fabe
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
- name: Build Image
run: docker build -t coverity-img .
- name: Run Coverity
run: docker run --rm --env COVERITY_SCAN_NOTIFICATION_EMAIL --env COVERITY_SCAN_TOKEN --env COVERITY_DRY_RUN coverity-img
run: |
set -e
docker run --name cov-worker --env COVERITY_SCAN_NOTIFICATION_EMAIL --env COVERITY_SCAN_TOKEN --env COVERITY_DRY_RUN coverity-img
docker cp cov-worker:/root/ffmpeg/cov-int.tgz cov-int.tgz
env:
COVERITY_SCAN_NOTIFICATION_EMAIL: ${{ secrets.COVERITY_SCAN_NOTIFICATION_EMAIL }}
COVERITY_SCAN_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
Expand All @@ -25,4 +28,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: cov-int
path: /root/cov-int.tgz
path: cov-int.tgz

0 comments on commit 053fabe

Please sign in to comment.