Refactor JSON Parsing to Use Boost.JSON #48
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: CodeQL Analysis | |
on: | |
push: | |
branches: ["main", "releases/**"] | |
paths-ignore: | |
- "*.md" | |
- "**/docs" | |
pull_request: | |
branches: ["main", "releases/**"] | |
paths-ignore: | |
- "*.md" | |
- "**/docs" | |
jobs: | |
sdl_compliance: | |
name: Running SDL Compliance Policy checks (CodeQL) | |
runs-on: windows-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
matrix: | |
include: | |
- language: "cpp" | |
build-mode: manual # Or autobuild | |
build-config: Release | |
build-platform: x64 | |
env: | |
BuildConfiguration: Release | |
SolutionPath: 'LogMonitor\LogMonitor.sln' | |
CodeQLResultsDir: "../codeql-results" | |
BOOST_ROOT: "C:\\local\\boost_1_85_0" | |
BOOST_INCLUDE: "$env:BOOST_ROOT\\include" | |
BOOST_LIB: "$env:BOOST_ROOT\\lib" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
with: | |
msbuild-architecture: ${{ matrix.build-platform }} | |
- name: Check solution path | |
run: | | |
if (-not (Test-Path -Path "${{ env.SolutionPath }}" -ErrorAction Continue)) { | |
Throw "Invalid solution path: ${{ env.SolutionPath }}" | |
} | |
Write-Host "Current dir: $PWD" | |
Write-Host "Solution path: ${{ env.SolutionPath }}" | |
Get-ChildItem "${{ env.SolutionPath }}" -ErrorAction Continue | |
# Check if local directory exists; if not, create it | |
- name: Ensure Boost Directory Exists | |
shell: pwsh | |
run: | | |
if (-not (Test-Path -Path "C:\local")) { | |
New-Item -ItemType Directory -Path "C:\local" | |
Write-Host "Created directory: C:\local" | |
} | |
if (-not (Test-Path -Path "${{ env.BOOST_ROOT }}")) { | |
New-Item -ItemType Directory -Path "${{ env.BOOST_ROOT }}" | |
Write-Host "Created directory: ${{ env.BOOST_ROOT }}" | |
} | |
# Download and Install Boost Library | |
- name: Install Boost Library (Prebuilt for Visual Studio) | |
shell: pwsh | |
run: | | |
Invoke-WebRequest -Uri https://boostorg.jfrog.io/artifactory/main/release/1.85.0/binaries/boost_1_85_0-msvc-14.3-64.exe -OutFile boost_installer.exe | |
Start-Process .\boost_installer.exe -ArgumentList "/S /D=${{ env.BOOST_ROOT }}" -NoNewWindow -Wait | |
Remove-Item boost_installer.exe -Force # Clean up the installer | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
queries: security-and-quality | |
build-mode: ${{ matrix.build-mode }} | |
- name: Build LogMonitor | |
run: | | |
msbuild.exe "${{ env.SolutionPath }}" /t:clean | |
msbuild.exe "${{ env.SolutionPath }}" /p:platform="${{ matrix.build-platform }}" /p:configuration="${{ env.BuildConfiguration }}" /p:IncludePath="${{ env.BOOST_INCLUDE }}" /p:LibraryPath="${{ env.BOOST_LIB }}" | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
output: ${{ env.CodeQLResultsDir }} | |
upload: "always" |