mosquitto/.github/workflows/coverity-scan-develop.yml

27 lines
603 B
YAML
Raw Normal View History

2022-08-01 21:26:45 +00:00
name: Coverity Scan develop branch on a weekly basis
2022-05-13 12:25:16 +00:00
on:
workflow_dispatch:
schedule:
- cron: "7 3 * * 0"
jobs:
coverity:
runs-on: ubuntu-latest
steps:
2022-08-01 21:26:45 +00:00
- uses: actions/checkout@v3
with:
ref: develop
2022-05-13 12:25:16 +00:00
- name: Dependencies
run: sudo apt-get install -y libcjson-dev libsqlite3-dev libssl-dev uthash-dev
- uses: vapier/coverity-scan-action@v1
with:
build_language: 'cxx'
project: "eclipse/mosquitto"
token: ${{ secrets.COVERITY_SCAN_TOKEN }}
email: ${{ secrets.COVERITY_SCAN_EMAIL }}
command: "make binary"