Skip to content

ci: introduce Facebook Infer job #1290

ci: introduce Facebook Infer job

ci: introduce Facebook Infer job #1290

name: build-and-test-differential
on:
pull_request:
jobs:
build-and-test-differential:
runs-on: ubuntu-latest
container: ${{ matrix.container }}
strategy:
fail-fast: false
matrix:
rosdistro:
- humble
include:
- rosdistro: humble
container: ros:humble
build-depends-repos: build_depends.repos
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Remove exec_depend
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
- name: Get modified packages
id: get-modified-packages
uses: autowarefoundation/autoware-github-actions/get-modified-packages@v1
- name: Build
if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }}
uses: autowarefoundation/autoware-github-actions/colcon-build@v1
with:
rosdistro: ${{ matrix.rosdistro }}
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
build-depends-repos: ${{ matrix.build-depends-repos }}
- name: Upload compilation database
id: upload-compile-db
uses: actions/upload-artifact@v4
with:
name: compilation-database-diff-${{ github.head_ref }}
path: build/compile_commands.json
if-no-files-found: error
- name: Test
id: test
if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }}
uses: autowarefoundation/autoware-github-actions/colcon-test@v1
with:
rosdistro: ${{ matrix.rosdistro }}
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
build-depends-repos: ${{ matrix.build-depends-repos }}
- name: Upload coverage to CodeCov
if: ${{ steps.test.outputs.coverage-report-files != '' }}
uses: codecov/codecov-action@v4
with:
files: ${{ steps.test.outputs.coverage-report-files }}
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
verbose: true
flags: differential
fb-infer-differential:
runs-on: ubuntu-latest
needs: [build-and-test-differential]
steps:
- name: Install FB Infer
id: fb-infer-install
env:
VERSION: 1.2.0
run: |
curl -sSL "https://github.com/facebook/infer/releases/download/v$VERSION/infer-linux-x86_64-v$VERSION.tar.xz" \
sudo ln -s "infer-linux-x86_64-v$VERSION/bin/infer" ./infer
- name: Download compilation database
id: download-compile-db
uses: actions/download-artifact@v4
with:
name: compilation-database-diff-${{ github.head_ref }}
- name: Run FB Infer
id: fb-infer-run
run: |
git diff --name-only ${{ github.head_ref }}..${{ github.base_ref }} > changed-files.txt
infer run --changed-files-index changed-files.txt --compilation-database ./compile_commands.json
- name: Upload FB Infer Report
id: fb-infer-upload
uses: actions/upload-artifact@v4
with:
name: infer-report-diff-${{ github.head_ref }}
path: infer-out/report.*
if-no-files-found: error