Merge branch 'eclipse:develop' into develop

This commit is contained in:
Norbert Heusser
2022-05-13 10:55:47 +02:00
committed by GitHub
38 changed files with 150 additions and 272 deletions
+24
View File
@@ -0,0 +1,24 @@
name: Coverity Scan fixes and develop branches on a weekly basis
on:
workflow_dispatch:
schedule:
- cron: "7 3 * * 0"
jobs:
coverity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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"
-21
View File
@@ -1,21 +0,0 @@
name: "Synchronise Coverity Scan branches on a weekly basis"
on:
workflow_dispatch:
schedule:
- cron: "7 3 * * 0"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: |
git checkout coverity-fixes
git reset --hard origin/fixes
git push origin coverity-fixes
git checkout coverity-develop
git reset --hard origin/develop
git push origin coverity-develop