Merge pull request #5527 from maron2000/fix_armbuild

Workaround for MSVC ARM64 CI build failure
This commit is contained in:
Jonathan Campbell 2025-03-01 06:45:48 -08:00 committed by GitHub
commit 16fe7e3c2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -148,7 +148,7 @@ jobs:
- name: Build Visual Studio ARM64 SDL1 - name: Build Visual Studio ARM64 SDL1
shell: pwsh shell: pwsh
run: | run: |
msbuild -m vs/dosbox-x.sln -t:dosbox-x:Rebuild -p:Configuration=Release -p:Platform=ARM64 -p:PostBuildEventUseInBuild=false msbuild -m vs/dosbox-x.sln -t:dosbox-x:Rebuild -p:Configuration=Release -p:Platform=ARM64 -p:PostBuildEventUseInBuild=false -p:WindowsTargetPlatformVersion=10.0.22621.0
if (-not(Test-Path -Path bin\ARM64\Release\dosbox-x.exe -PathType Leaf)) {exit 1} if (-not(Test-Path -Path bin\ARM64\Release\dosbox-x.exe -PathType Leaf)) {exit 1}
- name: Package Visual Studio ARM64 SDL1 - name: Package Visual Studio ARM64 SDL1
shell: bash shell: bash
@ -177,7 +177,7 @@ jobs:
- name: Build Visual Studio ARM64 SDL2 - name: Build Visual Studio ARM64 SDL2
shell: pwsh shell: pwsh
run: | run: |
msbuild -m vs/dosbox-x.sln -t:dosbox-x:Rebuild -p:Configuration="Release SDL2" -p:Platform=ARM64 -p:PostBuildEventUseInBuild=false msbuild -m vs/dosbox-x.sln -t:dosbox-x:Rebuild -p:Configuration="Release SDL2" -p:Platform=ARM64 -p:PostBuildEventUseInBuild=false -p:WindowsTargetPlatformVersion=10.0.22621.0
if (-not(Test-Path -Path bin\ARM64\"Release SDL2"\dosbox-x.exe -PathType Leaf)) {exit 1} if (-not(Test-Path -Path bin\ARM64\"Release SDL2"\dosbox-x.exe -PathType Leaf)) {exit 1}
- name: Package Visual Studio ARM64 SDL2 - name: Package Visual Studio ARM64 SDL2
shell: bash shell: bash