mirror of https://github.com/google/brotli
.travis.sh: only build wheels on OSX
This commit is contained in:
parent
2dc2ac7701
commit
18dfca9bc1
|
@ -44,8 +44,12 @@ case "$1" in
|
||||||
"after_success")
|
"after_success")
|
||||||
case "${BUILD_SYSTEM}" in
|
case "${BUILD_SYSTEM}" in
|
||||||
"python")
|
"python")
|
||||||
source venv/bin/activate
|
case "${TRAVIS_OS_NAME}" in
|
||||||
pip wheel -w dist .
|
"osx")
|
||||||
|
source venv/bin/activate
|
||||||
|
pip wheel -w dist .
|
||||||
|
;;
|
||||||
|
esac
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue