travis: build binaries on osx

This commit is contained in:
Maximilian Hils 2015-11-29 15:11:08 +01:00
parent f02da6448d
commit 4c9fc2e3e9

View File

@ -45,7 +45,7 @@ install:
brew outdated openssl || brew upgrade openssl
brew install python
fi
- "pip install -r requirements.txt"
- "pip install --src .. -r requirements.txt"
before_script:
- "openssl version -a"
@ -55,6 +55,19 @@ script:
after_success:
- coveralls
- |
if [[ $TRAVIS_OS_NAME == "osx" && $TRAVIS_BRANCH == "master" && -z $TRAVIS_PULL_REQUEST ]]
then
brew install curl --with-libssh2
pip install virtualenv
git clone https://github.com/mitmproxy/release.git ../release
pip install -e ../release
python ../release/rtool.py -p mitmproxy bdist
for f in ../release/dist/*
do
$(brew --prefix curl)/bin/curl -u $SNAPSHOT_AUTH --hostpubmd5 $SNAPSHOT_PUBKEY -T $f sftp://$SNAPSHOT_HOST/
done
fi
notifications:
irc: