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

27 lines
599 B
YAML
Raw Normal View History

2022-08-01 21:26:45 +00:00
name: Coverity Scan fixes branch on a weekly basis
2022-05-13 12:25:16 +00:00
on:
workflow_dispatch:
schedule:
2022-08-01 21:26:45 +00:00
- cron: "7 3 * * 3"
2022-05-13 12:25:16 +00:00
jobs:
coverity:
runs-on: ubuntu-latest
steps:
2022-08-01 21:26:45 +00:00
- uses: actions/checkout@v3
with:
ref: fixes
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"