Skip to content

Add LoongArch64 compilation support #25

Add LoongArch64 compilation support

Add LoongArch64 compilation support #25

name: UEFI driver - CodeQL build
on: [push, pull_request]
env:
SOLUTION_FILE_PATH: ./uefi-driver.sln
BUILD_CONFIGURATION: Debug
TARGET_PLATFORM: x64
jobs:
build:
runs-on: windows-latest
permissions:
security-events: write
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: cpp
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
- 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@v3