Problem: CI builds libsodium from dev branch

Solution: checkout stable branch instead.
Several warnings are printed when building from the master branch,
and developers recommend using the stable branch instead.
This commit is contained in:
Luca Boccassi 2016-02-04 23:47:16 +00:00
parent b9e4fa82a2
commit 3641f705e1

View File

@ -17,7 +17,7 @@ if [ $BUILD_TYPE == "default" ]; then
# Build required projects first
# libsodium
git clone --depth 1 git://github.com/jedisct1/libsodium.git
git clone --depth 1 -b stable git://github.com/jedisct1/libsodium.git
( cd libsodium; ./autogen.sh; ./configure --prefix=$BUILD_PREFIX; make check; make install)
# Build and check this project