Skip to content

Commit e03b460

Browse files
committed
appveyor: Add support for generating windows 32-bit wheel
See #5
1 parent 752dd6f commit e03b460

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

CastXMLUrls.cmake

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ set(linux64_binary_sha512 "a3c929ebd652fd159709826e154d566235fb12903dac04070854e
1111
set(macosx_binary_url "https://data.kitware.com/api/v1/file/5ee7eb5c9014a6d84ec1f240/download")
1212
set(macosx_binary_sha512 "0ba8deff17b3a8f5a2cd22939ff83a864629201d8b881e44d7ed01d0fd2aa578338e3319e402c226b3648a6027a4538e8c4cd066d6fe2c49eb1a4471e803b827")
1313

14-
set(win32_binary_url "NA") # Windows 32-bit binaries not available
15-
set(win32_binary_sha512 "NA")
16-
1714
set(win64_binary_url "https://data.kitware.com/api/v1/file/5ee7eb539014a6d84ec1f22a/download")
1815
set(win64_binary_sha512 "fa7a38dbdb71e0484cfeb255aef6d085abf23496a85051e3dccac593d9eec042fad5be72110d7f3528b424d90fbf5b5053c31f054470d691a7109c1f13776229")
16+
17+
# See https://github.com/CastXML/CastXML-python-distributions/issues/5
18+
set(win32_binary_url "${win64_binary_url}")
19+
set(win32_binary_sha512 "${win64_binary_sha512}")

appveyor.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ version: "0.0.1.{build}"
88
environment:
99
matrix:
1010

11-
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
12-
# PYTHON_DIR: "C:\\Python27"
13-
# PYTHON_VERSION: "2.7.x"
14-
# PYTHON_ARCH: "32"
15-
# BLOCK: "0"
11+
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
12+
PYTHON_DIR: "C:\\Python27"
13+
PYTHON_VERSION: "2.7.x"
14+
PYTHON_ARCH: "32"
15+
BLOCK: "0"
1616

1717
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
1818
PYTHON_DIR: "C:\\Python27-x64"
1919
PYTHON_VERSION: "2.7.x"
2020
PYTHON_ARCH: "64"
2121
BLOCK: "0"
2222

23-
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
24-
# PYTHON_DIR: "C:\\Python37"
25-
# PYTHON_VERSION: "3.7.x"
26-
# PYTHON_ARCH: "32"
27-
# BLOCK: "0"
23+
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
24+
PYTHON_DIR: "C:\\Python37"
25+
PYTHON_VERSION: "3.7.x"
26+
PYTHON_ARCH: "32"
27+
BLOCK: "0"
2828

2929
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
3030
PYTHON_DIR: "C:\\Python37-x64"

0 commit comments

Comments
 (0)