Add an example folder with Travis-CI examples

I have placed two example Travis-CI configurations in an examples/
folder. The first is the same as in the README, and the second shows how
to both test and deploy in two stages.

I am hoping that examples might be added for other CI providers as well,
so that users can see different approaches to building and deploying
wheels.
This commit is contained in:
Seth Morton
2019-11-25 18:59:07 -08:00
parent 190b013c61
commit 20ba988b72
3 changed files with 112 additions and 1 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ after_success:
- if [[ $TRAVIS_TAG ]]; then python -m twine upload wheelhouse/*.whl; fi
```
For more information, including how to build on Appveyor, Azure, CircleCI, check out the [documentation](https://cibuildwheel.readthedocs.org).
For more information, including how to build on Appveyor, Azure, CircleCI, check out the [documentation](https://cibuildwheel.readthedocs.org) and also check out [the examples](https://github.com/joerick/cibuildwheel/tree/master/examples).
Options
-------