Add travis null_deploy for osx

This commit is contained in:
James R. Barlow
2017-05-01 17:24:43 -07:00
parent fae2119b1e
commit e8cc8fc879
2 changed files with 13 additions and 0 deletions
+10
View File
@@ -74,6 +74,16 @@ deploy:
condition: $TRAVIS_OS_NAME == "osx"
skip_upload_docs: true
# null deploy for osx
# we really just want to run after_deploy *after* pypi upload is done, but
# after_deploy on runs if a given box deployed
provider: script
script: .travis/null_deploy.sh
on:
branch: master
tags: false
condition: "$TRAVIS_OS_NAME" == "osx"
after_deploy: |
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
bash .travis/osx_brew.sh
+3
View File
@@ -0,0 +1,3 @@
#!/usr/bin/env bash
exit 0