tgcrypto/.appveyor.yml

17 lines
501 B
YAML
Raw Normal View History

environment:
2019-11-27 13:11:38 +00:00
CIBW_BUILD: cp34-* cp35-* cp36-* cp37-* cp38-*
CIBW_BUILD_VERBOSITY: 3
CIBW_TEST_COMMAND: cd {project} && python setup.py test -q
install:
- set PATH=C:\Python37;%PATH%
2019-06-14 19:18:56 +00:00
- set BUILD_OUTPUT_PATH=windows-tgcrypto-wheels
- cmd: pip install -r requirements-ci.txt
build_script:
2019-06-14 19:18:56 +00:00
- cmd: cibuildwheel --output-dir %BUILD_OUTPUT_PATH%
- ps: Compress-Archive "$env:BUILD_OUTPUT_PATH/*" "$env:BUILD_OUTPUT_PATH.zip"
artifacts:
2019-06-14 19:18:56 +00:00
- path: "$(BUILD_OUTPUT_PATH).zip"
name: wheels