-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
19 lines (19 loc) · 866 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: python
python:
- "2.7"
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y build-essential autoconf automake libtool
- sudo apt-get install -y gnupg
- wget https://download.libsodium.org/libsodium/releases/libsodium-1.0.12.tar.gz
- wget https://download.libsodium.org/libsodium/releases/libsodium-1.0.12.tar.gz.sig
- gpg --import libsodium.asc
- gpg --verify libsodium-1.0.12.tar.gz.sig libsodium-1.0.12.tar.gz
- tar -xzvf libsodium-1.0.12.tar.gz
- pushd libsodium-1.0.12 && ./configure && make && make check && sudo make install && popd
- wget https://github.com/openstack/liberasurecode/archive/1.4.0.tar.gz
- tar -xzvf 1.4.0.tar.gz
- pushd liberasurecode-1.4.0 && ./autogen.sh && ./configure && make && sudo make install && popd
- sudo ldconfig
install: "pip install -r requirements.txt"
script: pytest -v -x