Use LATEST rather than specific libsodium release in tests

master
Andrew Hamon 2018-02-16 16:19:56 -05:00
parent 2d0f329774
commit 8a18415185
1 changed files with 4 additions and 6 deletions

View File

@ -1,14 +1,12 @@
#!/bin/sh
# The purpose of this file is to install libsodium in
# the Travis CI environment. Outside this environment,
# you would probably not want to install it like this.
#
# from: google/hat-backup
# the Travis CI environment. We recommend using a
# package manager.
set -e
wget https://download.libsodium.org/libsodium/releases/libsodium-stable-2018-02-14.tar.gz
tar xvfz libsodium-stable-2018-02-14.tar.gz
wget https://download.libsodium.org/libsodium/releases/LATEST.tar.gz
tar xvfz LATEST.tar.gz
cd libsodium-stable
sudo ./configure
sudo make