Skip to content

Commit

Permalink
build > pybuild
Browse files Browse the repository at this point in the history
  • Loading branch information
jay0lee committed May 14, 2019
1 parent 9b5f9c3 commit 1ae3715
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cache:
- $HOME/.cache/pip
- $HOME/python
- $HOME/ssl
- $HOME/build
- $HOME/pybuild

matrix:
include:
Expand Down
4 changes: 2 additions & 2 deletions travis/linux-x86_64-before-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ echo "My Path is $mypath"
cpucount=$(nproc --all)
echo "This device has $cpucount CPUs for compiling..."

cd ~/build
cd ~/pybuild
# Compile latest OpenSSL
if [ ! -d openssl-$BUILD_OPENSSL_VERSION ]; then
wget --quiet https://www.openssl.org/source/openssl-$BUILD_OPENSSL_VERSION.tar.gz
Expand All @@ -36,7 +36,7 @@ make -j$cpucount -s
echo "Running make install for OpenSSL..."
make install > /dev/null
export LD_LIBRARY_PATH=~/ssl/lib
cd ~/build
cd ~/pybuild

# Compile latest Python
if [ ! -d Python-$BUILD_PYTHON_VERSION ]; then
Expand Down
4 changes: 2 additions & 2 deletions travis/osx-x86_64-before-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ mypath=$HOME
whereibelong=$(pwd)
brew install xz > /dev/null

cd ~/build
cd ~/pybuild
# Compile latest OpenSSL
if [ ! -d openssl-$BUILD_OPENSSL_VERSION ]; then
wget --quiet https://www.openssl.org/source/openssl-$BUILD_OPENSSL_VERSION.tar.gz
Expand All @@ -17,7 +17,7 @@ make -j$cpucount -s
echo "Running make install for OpenSSL..."
make install > /dev/null
export LD_LIBRARY_PATH=~/ssl/lib
cd ~/build
cd ~/pybuild

# Compile latest Python
if [ ! -d Python-$BUILD_PYTHON_VERSION ]; then
Expand Down

0 comments on commit 1ae3715

Please sign in to comment.