Add more explicit keyboard input flushing where needed #54
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@v2 | |
- 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 }} |