From: Nathan Moinvaziri Date: Fri, 26 Mar 2021 00:16:40 +0000 (-0700) Subject: Added Windows ARM and ARM64 binaries in releases. #909 X-Git-Tag: 2.0.3~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2f0e16379ab4f4fc300b411f985d6b6f5ed4593;p=thirdparty%2Fzlib-ng.git Added Windows ARM and ARM64 binaries in releases. #909 --- diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 608c137f..f07f4318 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,25 +15,49 @@ jobs: os: windows-latest compiler: cl cmake-args: -A Win32 - deploy-name: win32 + deploy-name: win-x86 - name: Windows MSVC Win32 Compat os: windows-latest compiler: cl cmake-args: -A Win32 -DZLIB_COMPAT=ON - deploy-name: win32-compat + deploy-name: win-x86-compat - name: Windows MSVC Win64 os: windows-latest compiler: cl cmake-args: -A x64 - deploy-name: win64 + deploy-name: win-x86-64 - name: Windows MSVC Win64 Compat os: windows-latest compiler: cl cmake-args: -A x64 -DZLIB_COMPAT=ON - deploy-name: win64-compat + deploy-name: win-x86-64-compat + + - name: Windows MSVC ARM + os: windows-latest + compiler: cl + cmake-args: -A ARM + deploy-name: win-arm + + - name: Windows MSVC ARM Compat + os: windows-latest + compiler: cl + cmake-args: -A ARM -DZLIB_COMPAT=ON + deploy-name: win-arm-compat + + - name: Windows MSVC ARM64 + os: windows-latest + compiler: cl + cmake-args: -A ARM64 + deploy-name: win-arm64 + + - name: Windows MSVC ARM64 Compat + os: windows-latest + compiler: cl + cmake-args: -A ARM64 -DZLIB_COMPAT=ON + deploy-name: win-arm64-compat steps: - name: Checkout repository