Sigint 2349 2 #690
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: CI-Coverity-Basic | |
on: | |
push: | |
branches: [ main, master, develop, stage, release ] | |
pull_request: | |
branches: [ main, master, develop, stage, release ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: [ self-hosted, macOS, lokesh ] | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v3 | |
- name: Coverity Scan | |
uses: blackduck-inc/black-duck-security-scan@main | |
with: | |
### SCANNING: Required fields | |
coverity_url: ${{ secrets.COVERITY_URL }} | |
coverity_user: ${{ secrets.COVERITY_USER }} | |
coverity_passphrase: ${{ secrets.COVERITY_PASSPHRASE }} | |
### Coverity Connect users - Uncomment below | |
# coverity_local: true | |
### POLICY ENFORCEMENT: Uncomment to break build on policy | |
# coverity_policy_view: 'Outstanding Issues' | |
### PULL REQUEST COMMENTS: Uncomment below to enable | |
coverity_prComment_enabled: true | |
github_token: ${{ secrets.GITHUB_TOKEN }} # Required when PR comments is enabled |