Commit 3641f705 authored by Luca Boccassi's avatar Luca Boccassi

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.
parent b9e4fa82
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment