mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
59 lines
1.1 KiB
YAML
59 lines
1.1 KiB
YAML
name: "CodeQL"
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
paths-ignore:
|
|
- '.gitignore'
|
|
- '.gitattributes'
|
|
- 'res/**'
|
|
- '**.cmd'
|
|
- '**.md'
|
|
- '**.rc'
|
|
- '**.sh'
|
|
- '**.txt'
|
|
- '**.xml'
|
|
pull_request:
|
|
branches: [master]
|
|
paths-ignore:
|
|
- '.gitignore'
|
|
- '.gitattributes'
|
|
- 'res/**'
|
|
- '**.cmd'
|
|
- '**.md'
|
|
- '**.rc'
|
|
- '**.sh'
|
|
- '**.txt'
|
|
- '**.xml'
|
|
|
|
env:
|
|
SOLUTION_FILE_PATH: ./rufus.sln
|
|
BUILD_CONFIGURATION: Release
|
|
TARGET_PLATFORM: x64
|
|
|
|
jobs:
|
|
CodeQL-Build:
|
|
runs-on: windows-latest
|
|
|
|
permissions:
|
|
security-events: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v2
|
|
with:
|
|
languages: cpp
|
|
|
|
- name: Add MSBuild to PATH
|
|
uses: microsoft/setup-msbuild@v1
|
|
with:
|
|
msbuild-architecture: x64
|
|
|
|
- name: Build
|
|
run: msbuild ${{env.SOLUTION_FILE_PATH}} /m /p:Configuration=${{ env.BUILD_CONFIGURATION}},Platform=${{ env.TARGET_PLATFORM }}
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v2
|