Actions: Use CodeChecker with clang.

This commit is contained in:
imi415 2021-07-27 07:11:13 +00:00
parent 718f37f262
commit 6763430766
2 changed files with 43 additions and 6 deletions

View File

@ -10,19 +10,32 @@ jobs:
steps:
- name: "Update package cache"
run: "sudo apt-get update"
- name: "Setup dependencies"
run: "sudo apt-get -y install build-essential cmake libmosquitto-dev libconfig-dev libgpiod-dev libiio-dev"
env:
DEBIAN_FRONTEND: "noninteractive"
- name: "Checkout repository"
uses: "actions/checkout@v2"
with:
submodules: "true"
- name: "Create build directory"
run: "mkdir build"
- name: "Configure cmake"
run: "cmake .."
working-directory: "build"
- name: "Build project"
run: "make"
working-directory: "build"
working-directory: "build"
- name: "Store native binary"
uses: "actions/upload-artifact@v2"
with:
name: "sa-native-binary-ubuntu"
path: "build/SystemAgent"
retention-days: 30

View File

@ -1,28 +1,52 @@
name: "Run Cppcheck on repository"
name: "Run static check on repository"
on:
push:
branches: ["master"]
jobs:
build:
static-check:
runs-on: "ubuntu-latest"
steps:
- name: "Update package cache"
run: "sudo apt-get update"
- name: "Setup dependencies"
run: "sudo apt-get -y install build-essential cmake cppcheck"
run: "sudo apt-get -y install build-essential cmake libmosquitto-dev libconfig-dev libgpiod-dev libiio-dev"
env:
DEBIAN_FRONTEND: "noninteractive"
- name: "Install CodeChecker"
run: "sudo snap install codechecker --classic"
- name: "Checkout repository"
uses: "actions/checkout@v2"
with:
submodules: "true"
- name: "Create build directory"
run: "mkdir build"
- name: "Configure cmake"
run: "cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=yes .."
working-directory: "build"
- name: "Run Cppcheck"
run: "cppcheck --project=compile_commands.json"
- name: "Run CodeChecker"
run: "codechecker analyze compile_commands.json -o results"
working-directory: "build"
- name: "Generate HTML reports"
run: "codechecker parse -e html ./results -o ./report"
working-directory: "build"
- name: "Dump report to stderr"
run: "codechecker parse --print-steps ./results"
working-directory: "build"
- name: "Save HTML reports to artifact"
uses: "actions/upload-artifact@v2"
with:
name: "static-check-report"
path: "build/report"
retion-days: 30