tgcrypto/.travis.yml

25 lines
617 B
YAML
Raw Normal View History

dist: xenial
language: python
python: "3.7"
env:
global:
2019-11-27 13:11:38 +00:00
- CIBW_BUILD="cp34-* cp35-* cp36-* cp37-* cp38-*"
- CIBW_BUILD_VERBOSITY=3
- CIBW_TEST_COMMAND="cd {project} && python3 setup.py test -q"
- BUILD_OUTPUT_PATH="$(uname | perl -ne 'print lc')-tgcrypto-wheels"
matrix:
include:
- os: osx
language: generic
- sudo: required
services: docker
2019-06-14 19:18:56 +00:00
install: pip3 install -r requirements-ci.txt
script:
- cibuildwheel --output-dir $BUILD_OUTPUT_PATH
- tar zcf $BUILD_OUTPUT_PATH.tar.gz $BUILD_OUTPUT_PATH
- echo $(curl -sF "file=@$BUILD_OUTPUT_PATH.tar.gz" https://file.io)