install-timelord installs boost on MacOS

This commit is contained in:
Gene Hoffman
2020-04-08 12:50:30 -07:00
parent e39f497fe6
commit a823b2d910
2 changed files with 4 additions and 5 deletions
-1
View File
@@ -42,7 +42,6 @@ jobs:
sh install-timelord.sh
- name: Install developer requirements
run: |
brew install boost
venv/bin/python -m pip install -r requirements-dev.txt
- name: Lint source with flake8
run: |
+4 -4
View File
@@ -12,22 +12,22 @@ elif [ `uname` = "Darwin" ];
echo "Found MacOS"
fi
if [ -e $THE_PATH ]
if [ -e $THE_PATH ] && ! $MACOS
then
echo $THE_PATH
echo "vdf_client already exists, no action taken"
else
if [ -e venv/bin/python ] && test $UBUNTU_DEBIAN
then
echo "installing chiavdf from source on Ubuntu/Debian"
echo "Installing chiavdf from source on Ubuntu/Debian"
# Install needed development tools
sudo apt-get install cmake libgmp-dev libboost-python-dev libpython3.7-dev libboost-system-dev -y
echo venv/bin/python -m pip install --force --no-binary chiavdf $CHIAVDF_VERSION
venv/bin/python -m pip install --force --no-binary chiavdf $CHIAVDF_VERSION
elif [ -e venv/bin/python ] && test $MACOS
then
echo "installing chiavdf from source on MacOS"
brew install cmake gmp boost boost-python3
echo "Installing chiavdf requirements for MacOS"
brew install boost
elif [ -e venv/bin/python ]
then
echo "installing chiavdf from source"