Skip to content

Add LoongArch64 compilation support #43

Add LoongArch64 compilation support

Add LoongArch64 compilation support #43

name: UEFI driver - Windows (MSVC with gnu-efi) build
on: [push, pull_request]
env:
SOLUTION_FILE_PATH: ./uefi-driver.sln
BUILD_CONFIGURATION: Release
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
TARGET_PLATFORM: [x64, ia32, aa64]
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- 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=${{ matrix.TARGET_PLATFORM }}