Add Coverity and Trivy scan workflow (#3) #16
This file contains hidden or 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
| # | |
| # BSD 3-Clause License | |
| # Copyright (C) 2026 Intel Corporation | |
| # SPDX-License-Identifier: BSD-3-Clause | |
| # | |
| name: Continuous Integration | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| name: Continuous Integration | |
| runs-on: self-hosted | |
| steps: | |
| - name: Clean up previous run | |
| run: | | |
| find "${{ github.workspace }}" -mindepth 1 -maxdepth 1 -exec rm -rf {} + | |
| rm -rf /tmp/trivy-* | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.sha }} | |
| fetch-depth: 0 | |
| - name: Environment check | |
| uses: ./.github/actions/environment-check | |
| - name: Build dvledtx | |
| uses: ./.github/actions/build-dvledtx | |
| - name: Smoke test | |
| uses: ./.github/actions/smoke-tests | |
| - name: Run unit tests | |
| uses: ./.github/actions/unit-tests | |
| - name: ShellCheck | |
| uses: ./.github/actions/analysis/shellcheck | |
| - name: Coverity Scan | |
| uses: ./.github/actions/analysis/coverity | |
| - name: Trivy Scan | |
| uses: ./.github/actions/analysis/trivy | |
| - name: Upload all reports | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: all-scan-reports-${{ github.run_id }} | |
| path: ${{ github.workspace }}/reports/ | |
| retention-days: 30 |