From 9a28e6ce1c156016854cb6b62d079f9e0a5a8940 Mon Sep 17 00:00:00 2001 From: Pavel Iakovenko Date: Tue, 27 Feb 2024 09:59:35 -0500 Subject: [PATCH] Reenable win-arm64 CI builds --- .github/workflows/main-ci-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main-ci-build.yml b/.github/workflows/main-ci-build.yml index 7b331b4..5006dac 100644 --- a/.github/workflows/main-ci-build.yml +++ b/.github/workflows/main-ci-build.yml @@ -56,9 +56,9 @@ jobs: - name: Build for Windows-x64 run: dotnet msbuild /t:Package /p:WindowsOnly=true /p:RuntimeIdentifier=win-x64 /p:Configuration=Release /p:TargetFramework=net8.0 /p:VersionSuffix=rel if: matrix.os == 'windows-latest' - #- name: Build for Windows-arm64 - # run: dotnet msbuild /t:Restore,Package /p:WindowsOnly=false /p:RuntimeIdentifier=win-arm /p:Configuration=Release /p:TargetFramework=net8.0 /p:VersionSuffix=rel - # if: matrix.os == 'windows-latest' + - name: Build for Windows-arm64 + run: dotnet msbuild /t:Restore,Package /p:WindowsOnly=false /p:RuntimeIdentifier=win-arm64 /p:Configuration=Release /p:TargetFramework=net8.0 /p:VersionSuffix=rel + if: matrix.os == 'windows-latest' - name: Build for Windows-x86 run: dotnet msbuild /t:Restore,Package /p:WindowsOnly=false /p:RuntimeIdentifier=win-x86 /p:Configuration=Release /p:TargetFramework=net8.0 /p:VersionSuffix=rel if: matrix.os == 'windows-latest'