From 0ef25ce54336d2b66f43b4e0208e14a4e25888b6 Mon Sep 17 00:00:00 2001 From: Roger Aiudi Date: Tue, 25 May 2021 13:42:53 -0400 Subject: [PATCH] CI: Build and release on 32bit Windows Python --- .github/workflows/build.yml | 9 ++++++++- .github/workflows/release.yml | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 69ad7c2..2549fde 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,6 +66,10 @@ "win-py-3.7", "win-py-3.6", ], + "arch": [ + "x64", + "x86" + ], "include": [ { "name": "win-py-3.9", @@ -94,7 +98,10 @@ { "name": "Install the right python", "uses": "actions/setup-python@v2", - "with": { "python-version": "${{ matrix.pyenv }}" }, + "with": { + "python-version": "${{ matrix.pyenv }}", + "architecture": "${{ matrix.arch }}" + }, }, { "name": "Build and test gssapi", diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 600a665..da9015e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -85,6 +85,10 @@ "win-wheel-3.7", "win-wheel-3.6", ], + "arch": [ + "x64", + "x86" + ], "include": [ { "name": "win-wheel-3.9", @@ -113,7 +117,10 @@ { "name": "Install the right python", "uses": "actions/setup-python@v2", - "with": { "python-version": "${{ matrix.pyenv }}" }, + "with": { + "python-version": "${{ matrix.pyenv }}", + "architecture": "${{ matrix.arch }}" + }, }, { "name": "Create and upload Windows wheel", -- 2.31.1