diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2021-03-25 17:16:40 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2021-04-08 19:45:31 +0200 |
commit | a2f0e16379ab4f4fc300b411f985d6b6f5ed4593 (patch) | |
tree | cbfe122cfc5ab91558902a28d26175e0542f0507 | |
parent | dc39b36b39f9b25d36fa76d353e9c1b9efec4e2d (diff) |
Added Windows ARM and ARM64 binaries in releases. #909
-rw-r--r-- | .github/workflows/release.yml | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 608c137..f07f431 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 |