Skip to content

Commit

Permalink
trying a macosx build. fixes #1072
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcfee committed Feb 19, 2020
1 parent 6e47de6 commit 779cbef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -18,6 +18,8 @@ jobs:
- python: 3.7
os: linux
dist: xenial
- python: 3.7
os: osx


before_install:
Expand Down
8 changes: 6 additions & 2 deletions .travis_dependencies.sh
Expand Up @@ -23,8 +23,12 @@ if [ ! -d "$src" ]; then
pushd $HOME/env

# Download miniconda packages
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;

if [ "$TRAVIS_OS_NAME" = "osx" ]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh;
fi
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
# Install both environments
bash miniconda.sh -b -p $src

Expand Down

0 comments on commit 779cbef

Please sign in to comment.