[DO NOT MERGE] LMC: Mavlink ULog rate control support #228
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tiiuae-px4-coverity-scan | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
coverity: | |
runs-on: px4-self-hosted-coverity | |
steps: | |
- name: Checkout px4-firmware | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GH_REPO_TOKEN }} | |
submodules: 'recursive' | |
fetch-depth: 0 | |
- name: Fetch submodule tags | |
run: | | |
git submodule foreach --recursive git fetch --tags | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run coverity scan | |
run: | |
docker run --rm -v "$(pwd):/main_ws" ghcr.io/tiiuae/px4-coverity-scan-image:latest | |
- name: Update summary | |
run: | |
cat cov-analyze-result.txt >> $GITHUB_STEP_SUMMARY | |
- name: Upload coverity scan results | |
uses: actions/[email protected] | |
with: | |
name: coverity-html-report-${{ github.event.repository.name }} | |
path: coverity-output |