Skip to content

Merge pull request #48 from gmbr3/compareguid #50

Merge pull request #48 from gmbr3/compareguid

Merge pull request #48 from gmbr3/compareguid #50

Workflow file for this run

name: Windows (MSVC with gnu-efi) build
on:
workflow_dispatch:
branches: [master]
push:
branches: [master]
pull_request:
branches: [master]
env:
SOLUTION_FILE_PATH: ./uefi-ntfs.sln
BUILD_CONFIGURATION: Release
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
arch: [x64, ia32, aa64]
steps:
- name: Check out 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 UEFI bootloader
run: |
msbuild ${{ env.SOLUTION_FILE_PATH }} /m /p:Configuration=${{ env.BUILD_CONFIGURATION }},Platform=${{ matrix.arch }}
copy ${{ matrix.arch }}\${{ env.BUILD_CONFIGURATION }}\*.efi .
- name: Display SHA-256
run: Get-FileHash *.efi
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.arch }}
path: ./*.efi