Skip to content

Commit a66fa8e

Browse files
committed
Build both 3.5.5 and 3.7.6 (for the various macos LO bundled pythons)
Newest LO on mac bundles 3.7.6
1 parent 2c216a8 commit a66fa8e

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

scripts/travis-build

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -88,16 +88,20 @@ sudo make install
8888

8989
if [[ $TRAVIS_OS_NAME = osx && $CC = clang ]]; then
9090
# Rebuild with python 3.5.4, should give us two _libdivvun*so's with different names in /usr/local/lib/…
91-
eval "$(pyenv init -)"
92-
pyenv install 3.5.4
93-
pyenv global 3.5.4
94-
./configure "$@"
95-
(
96-
cd python
97-
make clean
98-
make
99-
)
100-
make -j3
101-
sudo make install
91+
for version in "3.5.5" "3.7.6"; do
92+
(
93+
eval "$(pyenv init -)"
94+
pyenv install "${version}"
95+
pyenv global "${version}"
96+
./configure "$@"
97+
(
98+
cd python
99+
make clean
100+
make
101+
)
102+
make -j3
103+
sudo make install
104+
)
105+
done
102106
scripts/bundle_mac_libs
103107
fi

0 commit comments

Comments
 (0)