Skip to content

[projmgr] Store context dependencies in cbuild-idx #1739

[projmgr] Store context dependencies in cbuild-idx

[projmgr] Store context dependencies in cbuild-idx #1739

Workflow file for this run

name: "CodeQL"
on:
workflow_dispatch:
pull_request:
branches: [ main ]
paths:
- '.github/workflows/codeql-analysis.yml'
- '**/*.c'
- '**/*.cpp'
- '**/*.h'
- '**/*.in'
- '**/CMakeLists.txt'
- '!**/*.md'
push:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Install packages
run: |
sudo apt-get install ninja-build
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
submodules: true
- name: Initialize CodeQL
uses: github/codeql-action/init@e5f05b81d5b6ff8cfa111c80c22c5fd02a384118 # v3.23.0
with:
languages: cpp
queries: security-and-quality
config-file: ./.github/codeql-config.yml
- name: Create build folder
run: mkdir build
- name: Build code for analysis
run: |
cmake -G Ninja ..
cmake --build .
working-directory: ./build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@e5f05b81d5b6ff8cfa111c80c22c5fd02a384118 # v3.23.0