Use LATEST rather than specific libsodium release in tests
parent
2d0f329774
commit
8a18415185
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue