forked from miniupnp/miniupnp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
39 lines (32 loc) · 1.14 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
environment:
APP_VERSION: '2.1'
matrix:
- PYTHON_VER: C:\Python27\python
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
SETUP_COMPILER_FLAG: --compiler=mingw32
- PYTHON_VER: C:\Python35\python
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
SETUP_COMPILER_FLAG:
- PYTHON_VER: C:\Python37\python
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
SETUP_COMPILER_FLAG:
version: '$(APP_VERSION).{build}'
image: Visual Studio 2017
install:
- set PATH=%PATH%;C:\msys64\mingw32\bin
# We need wheel installed to build wheels
- "%PYTHON_VER%.exe -m pip install wheel"
build_script:
- cd miniupnpc
- appveyor AddCompilationMessage "Building miniupnpc"
- mingw32-make -f Makefile.mingw
- mingw32-make -f Makefile.mingw pythonmodule PYTHON=%PYTHON_VER%
after_build:
- 7z a ..\miniupnpc-%APPVEYOR_BUILD_VERSION%.zip *.exe *.dll *.a *.lib
artifacts:
- path: miniupnpc-$(appveyor_build_version).zip
name: miniupnpc binaries
- path: miniupnpc/dist/miniupnpc-*.whl
name: miniupnpc python wheel (self-contained)
- path: miniupnpc/dist/miniupnpc-*.egg
name: miniupnpc python egg (self-contained)