Skip to content

only log MDAPI event profiling errors for kernel events (#379) #52

only log MDAPI event profiling errors for kernel events (#379)

only log MDAPI event profiling errors for kernel events (#379) #52

Workflow file for this run

name: analyze
permissions:
contents: read
on:
push:
paths-ignore:
- '**/*.md'
pull_request:
paths-ignore:
- '**/*.md'
branches:
- main
env:
BUILD_TYPE: RelWithDebInfo
jobs:
analyze:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{matrix.os}}
permissions:
security-events: write
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Initialize CodeQL
uses: github/codeql-action/init@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6
with:
languages: cpp
- name: Create Build Directory
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Run CMake
shell: bash
working-directory: ${{runner.workspace}}/build
run: cmake -DENABLE_CLILOADER=1 -DCMAKE_BUILD_TYPE=$BUILD_TYPE $GITHUB_WORKSPACE
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake --build . --parallel 4 --config $BUILD_TYPE
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6