-
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.
Update GNUPlot to write outliers (#242)
* Update GNUPlot to write outliers * Skip brew update * Fix brew cache * Upgrade osx image * Remove cache fix * Disable warning * Try to speed up mac build * Break out dotnet * Switch mac job to anaconda * Add timing * Reduce reqs * Reduce build further * Fix bug
- Loading branch information
1 parent
73c3c2a
commit 23d1f27
Showing
8 changed files
with
116 additions
and
43 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
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,41 +1,31 @@ | ||
#!/usr/bin/env bash | ||
|
||
sw_vers | ||
#sw_vers | ||
|
||
brew update > /dev/null | ||
#brew update > /dev/null | ||
#brew list | ||
which cmake || brew unlink cmake | ||
brew install cmake | ||
brew link cmake | ||
set +x | ||
brew list cmake > /dev/null || time brew upgrade cmake | ||
brew install zlib | ||
brew install swig@3 | ||
time brew install swig@3 | ||
brew unlink swig || true | ||
brew link swig@3 --force | ||
brew install doxygen | ||
time brew install doxygen | ||
brew install wget | ||
#brew install mono | ||
brew remove mono || true | ||
brew install nuget | ||
brew install coreutils || brew install gstat | ||
#brew install [email protected] | ||
brew uninstall openssl && brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/8b9d6d688f483a0f33fcfc93d433de501b9c3513/Formula/openssl.rb | ||
brew outdated pyenv || brew upgrade pyenv | ||
brew cask install dotnet-sdk | ||
brew install readline xz | ||
|
||
echo "OpenSSL: $(brew --prefix openssl)" | ||
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 | ||
|
||
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 | ||
|
||
CFLAGS="-I$(brew --prefix openssl)/include -I$(xcrun --show-sdk-path)/usr/include" | ||
LDFLAGS="-L$(brew --prefix openssl)/lib" | ||
pyenv install 2.7.12 | ||
pyenv global 2.7.12 | ||
echo "OpenSSL: $(brew --prefix openssl)" | ||
export PATH=$(pyenv root)/shims:${PATH} | ||
|
||
which conda | ||
|
||
pip install numpy | ||
pip install wheel | ||
pip install delocate | ||
|
||
dotnet --version | ||
|