Skip to content

Commit

Permalink
Merge pull request #8095 from embhorn/coverity-workflow
Browse files Browse the repository at this point in the history
Add more configs to Coverity scan schedule.
  • Loading branch information
douzzer authored Oct 29, 2024
2 parents 57a5895 + 4aa3d5f commit 5b07d47
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/coverity-scan-fixes.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Coverity Scan master branch on a daily basis
name: Coverity Scan master branch

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
- cron: '0 0 * * 1-5'
- cron: '0 0 * * 0'
- cron: '0 12 * * 0'

jobs:
coverity:
Expand All @@ -14,11 +16,24 @@ jobs:
with:
ref: master

- name: Configure wolfSSL
- name: Configure wolfSSL with enable-all M-F
if: github.event.schedule == '0 0 * * 1-5'
run: |
./autogen.sh
./configure --enable-all
- name: Configure wolfSSL with enable-all enable-smallstack Sun at 00:00
if: github.event.schedule == '0 0 * * 0'
run: |
./autogen.sh
./configure --enable-all --enable-smallstack
- name: Configure wolfSSL with bigendian Sun at 12:00
if: github.event.schedule == '0 12 * * 0'
run: |
./autogen.sh
./configure --enable-all CFLAGS="-DBIG_ENDIAN_ORDER"
- name: Check secrets
env:
token_var: ${{ secrets.COVERITY_SCAN_TOKEN }}
Expand Down

0 comments on commit 5b07d47

Please sign in to comment.