From 35e4105da0d132cc84c7087e782267de29e6f821 Mon Sep 17 00:00:00 2001 From: Terri Oda Date: Thu, 14 Jul 2022 14:09:32 -0700 Subject: [PATCH 1/2] ci: Add scan.coverity.com workflow --- .github/workflows/coverity.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/coverity.yml diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml new file mode 100644 index 0000000000..22202c8ac6 --- /dev/null +++ b/.github/workflows/coverity.yml @@ -0,0 +1,17 @@ +# Your .github/workflows/coverity.yml file. +name: Coverity Scan + +# We only want to test official release code, not every pull request. +on: + push: + branches: [main] + +jobs: + coverity: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: vapier/coverity-scan-action@v1 + with: + email: ${{ secrets.COVERITY_SCAN_EMAIL }} + token: ${{ secrets.COVERITY_SCAN_TOKEN }} From b491401661937b8ff91a0165db29bc3b1659bb42 Mon Sep 17 00:00:00 2001 From: Terri Oda Date: Thu, 14 Jul 2022 14:13:31 -0700 Subject: [PATCH 2/2] ci: set coverity language --- .github/workflows/coverity.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 22202c8ac6..a2fdf5d811 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -15,3 +15,4 @@ jobs: with: email: ${{ secrets.COVERITY_SCAN_EMAIL }} token: ${{ secrets.COVERITY_SCAN_TOKEN }} + build_language: "other"