-
Notifications
You must be signed in to change notification settings - Fork 133
45 lines (36 loc) · 1.05 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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:
Windows-VS2019-Build:
runs-on: windows-latest
strategy:
matrix:
TARGET_PLATFORM: [x64, ia32, aa64, arm]
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.TARGET_PLATFORM }}
copy ${{ matrix.TARGET_PLATFORM }}\${{ env.BUILD_CONFIGURATION }}\*.efi .
- name: Display SHA-256
run: Get-FileHash *.efi
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.TARGET_PLATFORM }}
path: ./*.efi