From e8cc8fc87989ff230e70f7c6718d87f369677091 Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Mon, 1 May 2017 17:24:43 -0700 Subject: [PATCH] Add travis null_deploy for osx --- .travis.yml | 10 ++++++++++ .travis/null_deploy.sh | 3 +++ 2 files changed, 13 insertions(+) create mode 100755 .travis/null_deploy.sh diff --git a/.travis.yml b/.travis.yml index 80312f1c..ced5b41a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/.travis/null_deploy.sh b/.travis/null_deploy.sh new file mode 100755 index 00000000..c4f76591 --- /dev/null +++ b/.travis/null_deploy.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +exit 0 \ No newline at end of file