Skip to content

Commit

Permalink
Create codechecker.yaml CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tobhe authored Sep 3, 2024
1 parent 6d5b015 commit ae164ff
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/codechecker
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CodeChecker

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

job:
steps:
- uses: actions/checkout@v4

- name: Install libevent
run: sudo apt install libevent-dev libsystemd-dev

- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
run: cmake -E make_directory ${{github.workspace}}/build

- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
shell: bash
working-directory: ${{github.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON

- name: Build
working-directory: ${{github.workspace}}/build
shell: bash
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build . --config $BUILD_TYPE

# Run the analysis
- uses: whisperity/codechecker-analysis-action@v1
id: codechecker
with:
logfile: ${{ github.workspace }}/build/compile_commands.json

# Upload the results to the CI.
- uses: actions/upload-artifact@v2
with:
name: "CodeChecker Bug Reports"
path: ${{ steps.codechecker.outputs.result-html-dir }}

0 comments on commit ae164ff

Please sign in to comment.