-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Travis reports error when it cannot find a wheel (#243)
* Travis reports error when it cannot find a wheel to update on non-Python builds * Downgrade Mac image to Xcode 7.3 to support older Macs * Try another image * Add echo * Upgrade to xcode10 * Update * remove all brew commands * Remove brew code * Remove dotnet check * Just add swig * Fix logging * Try to disable auto clean up in homebrew * Avoid auto update * Add dotnet standard back * Fix conda * Fix another bug * Fix linux test * Clean up
- Loading branch information
1 parent
23d1f27
commit 51379fa
Showing
4 changed files
with
84 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,34 @@ | ||
#!/usr/bin/env bash | ||
|
||
#sw_vers | ||
echo "Install requirements using HomeBrew" | ||
export HOMEBREW_NO_INSTALL_CLEANUP=1 | ||
export HOMEBREW_NO_AUTO_UPDATE=1 # Fix | ||
|
||
#brew update > /dev/null | ||
#brew list | ||
set +x | ||
brew list cmake > /dev/null || time brew upgrade cmake | ||
brew install zlib | ||
time brew install swig@3 | ||
set -x | ||
|
||
brew list swig@3 || brew install swig@3 | ||
brew unlink swig || true | ||
brew link swig@3 --force | ||
time brew install doxygen | ||
brew install wget | ||
brew install doxygen | ||
brew install nuget | ||
brew install coreutils || brew install gstat | ||
|
||
brew tap isen-ng/dotnet-sdk-versions | ||
brew cask list dotnet-sdk > /dev/null || time brew cask install dotnet-sdk2-2-400 | ||
#brew cask list dotnet-sdk > /dev/null || time brew cask install dotnet-sdk | ||
brew cask list dotnet-sdk || brew cask install dotnet-sdk2-2-400 | ||
|
||
brew list miniconda | ||
|
||
set +x | ||
echo "Install Anaconda" | ||
set -x | ||
time curl -o miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh | ||
time bash miniconda.sh -b -p $HOME/miniconda | ||
source $HOME/miniconda/etc/profile.d/conda.sh | ||
|
||
echo "OpenSSL: $(brew --prefix openssl)" | ||
export PATH=$(pyenv root)/shims:${PATH} | ||
|
||
which conda | ||
dotnet --version | ||
|
||
set +x | ||
echo "Finished requirements" | ||
|
||
|
||
|