CodeChecker #4
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: CodeChecker | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
workflow_dispatch: | ||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install libevent | ||
run: sudo apt install libevent-dev libsystemd-dev | ||
- name: Create Build Environment | ||
run: cmake -E make_directory ${{github.workspace}}/build | ||
- name: Configure CMake | ||
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 | ||
run: cmake --build . --config Debug | ||
# Run the analysis | ||
- uses: whisperity/codechecker-analysis-action@v1 | ||
id: codechecker | ||
with: | ||
logfile: ${{ github.workspace }}/build/compile_commands.json | ||
- name: Archive | ||
shell: sh | ||
run: | | ||
tar --directory ${{ steps.codechecker.outputs.result-html-dir }} \ | ||
cvf "$RUNNER_TEMP/artifact.tar" | ||
# Upload the results to the CI. | ||
- uses: actions/upload-pages-artifact@v4 | ||
with: | ||
name: "CodeChecker Bug Reports" | ||
path: ${{ runner.temp }}/artifact.tar | ||
if-no-files-fount: error | ||
deploy: | ||
needs: check | ||
permissions: | ||
pages: write | ||
id-token: write | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
run: ubuntu-latest | ||
Check failure on line 59 in .github/workflows/codechecker.yaml GitHub Actions / CodeCheckerInvalid workflow file
|
||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |