solvespace/appveyor.yml

84 lines
3.2 KiB
YAML
Raw Normal View History

2018-07-12 21:45:50 +00:00
version: '{build}'
2016-04-19 12:19:00 +00:00
clone_depth: 1
2019-09-23 05:28:43 +00:00
environment:
MSYS_DIR: C:\msys64
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PYTHON_DIR: C:\Python36-x64
2019-10-08 13:25:03 +00:00
COMPILER: mingw32
2019-09-23 05:28:43 +00:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PYTHON_DIR: C:\Python37-x64
2019-10-08 13:25:03 +00:00
COMPILER: mingw32
2019-10-27 12:58:21 +00:00
# Cython not yet support
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
2019-11-21 05:53:11 +00:00
# PYTHON_DIR: C:\Python38-x64
# COMPILER: mingw32
2019-10-08 13:25:03 +00:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
2019-11-21 05:53:11 +00:00
PYTHON_DIR: C:\Python38-x64
2019-10-08 13:25:03 +00:00
COMPILER: msvc
2019-09-20 08:36:21 +00:00
for:
2019-09-23 05:28:43 +00:00
- matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
2019-09-20 08:36:21 +00:00
before_build:
- git submodule update --init
- set tag=x%APPVEYOR_REPO_TAG_NAME%
- if %tag:~,2% == xv (set BUILD_TYPE=RelWithDebInfo) else (set BUILD_TYPE=Debug)
- mkdir build
2020-07-07 06:48:16 +00:00
- cmake -G"Visual Studio 14" -Tv140 -Bbuild -H.
2019-09-20 08:36:21 +00:00
build_script:
- msbuild "build\src\solvespace.vcxproj" /verbosity:minimal /property:Configuration=%BUILD_TYPE% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- msbuild "build\src\solvespace-cli.vcxproj" /verbosity:minimal /property:Configuration=%BUILD_TYPE% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- msbuild "build\test\solvespace-testsuite.vcxproj" /verbosity:minimal /property:Configuration=%BUILD_TYPE% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
test_script:
- build\bin\%BUILD_TYPE%\solvespace-testsuite.exe
2019-09-23 05:28:43 +00:00
deploy:
- provider: GitHub
auth_token:
secure: P9/pf2nM+jlWKe7pCjMp41HycBNP/+5AsmE/TETrDUoBOa/9WFHelqdVFrbRn9IC
description: ""
artifact: solvespace.exe,solvespace-cli.exe,solvespace.pdb
on:
APPVEYOR_REPO_NAME: solvespace/solvespace
APPVEYOR_REPO_TAG: true
- matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
2019-10-08 13:25:03 +00:00
install:
2019-10-27 12:58:21 +00:00
# Install Python-dev
- IF DEFINED PYTHON_DEV choco install -y python --version %PYTHON_DEV%
2019-09-23 05:28:43 +00:00
# Environment variables
- set Path=%MSYS_DIR%\mingw64\bin;%MSYS_DIR%\usr\bin;%Path%
- set Path=%PYTHON_DIR%;%PYTHON_DIR%\Scripts;%Path%
# Show Python
- python --version
- pip --version
# Upgrade setuptools
- pip install setuptools -U
# Set Python compiler to MinGW
2019-10-08 13:25:03 +00:00
- cython\platform\set_pycompiler %PYTHON_DIR% %COMPILER%
2019-09-23 05:28:43 +00:00
# Install modules
- pip install -r cython\requirements.txt
# Show tool kits
- gcc --version
- mingw32-make --version
2019-10-08 13:25:03 +00:00
build_script:
2019-09-23 05:28:43 +00:00
- cd cython && python setup.py test && cd ..
2019-10-08 13:25:03 +00:00
after_build:
2019-09-23 05:28:43 +00:00
# PyPI deployment
- IF "%APPVEYOR_REPO_TAG%"=="true"
2020-01-29 03:46:58 +00:00
IF "%APPVEYOR_REPO_NAME%"=="KmolYuan/solvespace" (
2019-09-23 05:28:43 +00:00
pip install twine &&
cd cython &&
python setup.py bdist_wheel &&
twine upload dist\*.whl --skip-existing
)
2015-09-13 11:19:15 +00:00
artifacts:
- path: build\bin\%BUILD_TYPE%\solvespace.exe
2015-09-13 11:19:15 +00:00
name: solvespace.exe
- path: build\bin\%BUILD_TYPE%\solvespace-cli.exe
name: solvespace-cli.exe
- path: build\bin\%BUILD_TYPE%\solvespace.pdb
2015-09-13 11:19:15 +00:00
name: solvespace.pdb