Skip to content

allow cliloader to proceed in more cases #60

allow cliloader to proceed in more cases

allow cliloader to proceed in more cases #60

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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Initialize CodeQL
uses: github/codeql-action/init@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # v3.26.10
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@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # v3.26.10