Query highest GOP Resolution, and set it before handing off to window… #65
Workflow file for this run
This file contains hidden or 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) 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@v6 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Add MSBuild to PATH | |
| uses: microsoft/setup-msbuild@v3 | |
| - 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@v7 | |
| with: | |
| name: ${{ matrix.arch }} | |
| path: ./*.efi |