Run coverity #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tii-depthai-ctrl-coverity | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
coverity: | |
runs-on: depthai-ctrl-self-hosted-coverity | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: Dockerfile.coverity | |
push: false | |
tags: dephai_ctrl_coverity:latest | |
- name: Run coverity scan | |
run: | |
docker run --rm \ | |
-e PROJECT_NAME=${{ github.event.repository.name }} \ | |
-v "$(pwd):/main_ws/src" \ | |
dephai_ctrl_coverity:latest | |
- name: Update summary | |
run: | | |
cat cov-analyze-result.txt >> $GITHUB_STEP_SUMMARY | |
- name: Upload coverity scan results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverity-html-report-${{ github.event.repository.name }} | |
path: coverity-output |