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