Show the path and size of the file being processed under the progress… #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows (MSVC with gnu-efi) | |
on: | |
workflow_dispatch: | |
branches: [main] | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
arch: [x64, ia32, aa64, arm] | |
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@v1 | |
- name: Build bootloaders | |
run: | | |
msbuild uefi-md5sum.sln /m /p:Configuration=Debug,Platform=${{ matrix.arch }} | |
msbuild uefi-md5sum.sln /m /p:Configuration=Release,Platform=${{ matrix.arch }} |