aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/coverity.yml
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2023-08-11 03:01:22 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-08-11 03:01:22 +0000
commitfe0b979764663486600861261cb885ba27aeb491 (patch)
treef98d11d6a158167e19fc9141c79d877280a616a6 /.github/workflows/coverity.yml
parent8d0176459cfc11e28e9427a7eadcf7a42f654f62 (diff)
parent1317aa642182906c0d8ab5496dd3025632e22022 (diff)
downloadgoogle-breakpad-fe0b979764663486600861261cb885ba27aeb491.tar.gz
Upgrade google-breakpad to v2023.01.27 am: 332a4371ed am: c3c25b3748 am: 4e7c6460d7 am: c9c160dbfd am: 1317aa6421
Original change: https://android-review.googlesource.com/c/platform/external/google-breakpad/+/2704174 Change-Id: I1cb5f0b860fff4523f331cce12735979ae56fd20 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to '.github/workflows/coverity.yml')
-rw-r--r--.github/workflows/coverity.yml43
1 files changed, 43 insertions, 0 deletions
diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml
new file mode 100644
index 00000000..06f8e276
--- /dev/null
+++ b/.github/workflows/coverity.yml
@@ -0,0 +1,43 @@
+# GitHub actions workflow.
+# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
+
+# https://scan.coverity.com/projects/google-breakpad
+name: Coverity Scan
+
+on:
+ push:
+ branches: [main]
+
+ schedule:
+ # The GH mirroring from Google GoB does not trigger push actions.
+ # Fire it once a week to provide some coverage.
+ - cron: '39 2 * * WED'
+
+ # Allow for manual triggers from the web.
+ workflow_dispatch:
+
+jobs:
+ coverity:
+ runs-on: ubuntu-latest
+ env:
+ CC: clang
+ CXX: clang++
+ steps:
+ - name: Checkout depot_tools
+ run: git clone --depth=1 https://chromium.googlesource.com/chromium/tools/depot_tools.git ../depot_tools
+
+ - name: Checkout breakpad
+ run: |
+ set -xe
+ PATH+=:$PWD/../depot_tools
+ gclient config --unmanaged --name=src https://github.com/${{ github.repository }}
+ gclient sync --no-history --nohooks
+
+ - run: ./configure --disable-silent-rules
+ working-directory: src
+
+ - uses: vapier/coverity-scan-action@v1
+ with:
+ command: make -C src -O -j$(getconf _NPROCESSORS_CONF)
+ email: ${{ secrets.COVERITY_SCAN_EMAIL }}
+ token: ${{ secrets.COVERITY_SCAN_TOKEN }}