mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
Add more configs to Coverity scan schedule.
This commit is contained in:
21
.github/workflows/coverity-scan-fixes.yml
vendored
21
.github/workflows/coverity-scan-fixes.yml
vendored
@ -1,9 +1,11 @@
|
|||||||
name: Coverity Scan master branch on a daily basis
|
name: Coverity Scan master branch
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * *"
|
- cron: '0 0 * * 1-5'
|
||||||
|
- cron: '0 0 * * 0'
|
||||||
|
- cron: '0 12 * * 0'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
coverity:
|
coverity:
|
||||||
@ -14,11 +16,24 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
ref: master
|
ref: master
|
||||||
|
|
||||||
- name: Configure wolfSSL
|
- name: Configure wolfSSL with enable-all M-F
|
||||||
|
if: github.event.schedule == '0 0 * * 1-5'
|
||||||
run: |
|
run: |
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
./configure --enable-all
|
./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
|
- name: Check secrets
|
||||||
env:
|
env:
|
||||||
token_var: ${{ secrets.COVERITY_SCAN_TOKEN }}
|
token_var: ${{ secrets.COVERITY_SCAN_TOKEN }}
|
||||||
|
Reference in New Issue
Block a user