From ac7b6110f4bd8419e6227ec81971b30c060f0f84 Mon Sep 17 00:00:00 2001 From: Nuno Subtil Date: Mon, 11 Dec 2023 15:40:31 -0800 Subject: [PATCH] Remove .github/test-build-windows.yml Upstream changes introduced a different GitHub workflow for builds, but we've diverged significantly from the build process by now. Remove the new upstream workflow steps to avoid failed actions builds. --- .github/workflows/test-build-windows.yml | 52 ------------------------ 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/test-build-windows.yml diff --git a/.github/workflows/test-build-windows.yml b/.github/workflows/test-build-windows.yml deleted file mode 100644 index 67c3bfd6b..000000000 --- a/.github/workflows/test-build-windows.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Test Builds on Windows - -on: [push, pull_request, workflow_dispatch] - -jobs: - build-set-windows: - runs-on: windows-2022 - - steps: - - name: Checkout code - id: checkout-code - uses: actions/checkout@v2 - with: - submodules: recursive - - - name: Setup glslangValidator - shell: pwsh - run: | - choco install vulkan-sdk -y - Write-Output "$([System.Environment]::GetEnvironmentVariable('VULKAN_SDK', 'Machine'))\Bin" ` - | Out-File -FilePath "${Env:GITHUB_PATH}" -Append - - - name: Setup Meson - shell: pwsh - run: pip install meson - - - name: Find Visual Studio - shell: pwsh - run: | - $installationPath = Get-VSSetupInstance ` - | Select-VSSetupInstance -Require Microsoft.VisualStudio.Workload.NativeDesktop -Latest ` - | Select-Object -ExpandProperty InstallationPath - Write-Output "VSDEVCMD=${installationPath}\Common7\Tools\VsDevCmd.bat" ` - | Out-File -FilePath "${Env:GITHUB_ENV}" -Append - - - name: Build MSVC x86 - shell: pwsh - run: | - & "${Env:COMSPEC}" /s /c "`"${Env:VSDEVCMD}`" -arch=x86 -host_arch=x64 -no_logo && set" ` - | % { , ($_ -Split '=', 2) } ` - | % { [System.Environment]::SetEnvironmentVariable($_[0], $_[1]) } - meson --buildtype release --backend vs2022 build-msvc-x86 - msbuild -m build-msvc-x86/dxvk.sln - - - name: Build MSVC x64 - shell: pwsh - run: | - & "${Env:COMSPEC}" /s /c "`"${Env:VSDEVCMD}`" -arch=x64 -host_arch=x64 -no_logo && set" ` - | % { , ($_ -Split '=', 2) } ` - | % { [System.Environment]::SetEnvironmentVariable($_[0], $_[1]) } - meson --buildtype release --backend vs2022 build-msvc-x64 - msbuild -m build-msvc-x64/dxvk.sln