Skip to content

Commit

Permalink
Merge pull request #7726 from embhorn/coverity-workflow
Browse files Browse the repository at this point in the history
Add Coverity scan workflow
  • Loading branch information
bandi13 authored Oct 4, 2024
2 parents 898815f + f4b603f commit 4962180
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/coverity-scan-fixes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Coverity Scan master branch on a weekly basis

on:
workflow_dispatch:
schedule:
- cron: "0 0,12 * * *"
# - cron: "0 0 * * 1"
#on:
# push:
# branches: [ 'master', 'main', 'release/**' ]

jobs:
coverity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master

- name: Configure wolfSSL
run: |
./autogen.sh
./configure --enable-all
- name: Check secrets
env:
token_var: ${{ secrets.COVERITY_SCAN_TOKEN }}
email_var: ${{ secrets.COVERITY_SCAN_EMAIL }}
run: |
token_len=${#token_var}
echo "$token_len"
email_len=${#email_var}
echo "$email_len"
- uses: vapier/coverity-scan-action@v1
with:
build_language: 'cxx'
project: "wolfSSL/wolfssl"
token: ${{ secrets.COVERITY_SCAN_TOKEN }}
email: ${{ secrets.COVERITY_SCAN_EMAIL }}
command: "make"

0 comments on commit 4962180

Please sign in to comment.