Skip to content
This repository has been archived by the owner on Nov 21, 2020. It is now read-only.

Build wheels for Windows #77

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
branches:
only:
- master
- /\d+\.\d+\.\d+$/

environment:
global:
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
APPVEYOR_JOB_NAME: python37-x64-vs2015
Alure2_DIR: C:\Program Files (x86)\alure\lib\cmake\Alure2
matrix:
- CIBW_BUILD: cp38-win_amd64

install:
- curl "https://openal-soft.org/openal-binaries/openal-soft-1.20.1-bin.zip" -o openal-soft-1.20.1-bin.zip
- 7z x -o%APPVEYOR_BUILD_FOLDER%\.. openal-soft-1.20.1-bin.zip
- set OPENALDIR=%APPVEYOR_BUILD_FOLDER%\..\openal-soft-1.20.1-bin
- git clone https://github.com/kcat/alure %APPVEYOR_BUILD_FOLDER%\..\alure
- cmake -A x64 -S %APPVEYOR_BUILD_FOLDER%\..\alure -B %APPVEYOR_BUILD_FOLDER%\..\alure\build
- cmake --build %APPVEYOR_BUILD_FOLDER%\..\alure\build --config Release --target install
- python -m pip install cibuildwheel

build_script: python -m cibuildwheel --output-dir wheelhouse