Sfoglia il codice sorgente

fix travis to install liblz4-dev from ppa

it is not available in ubuntu 12.04 by default.
Thomas Waldmann 9 anni fa
parent
commit
946507aeaf
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. 4 1
      .travis.yml

+ 4 - 1
.travis.yml

@@ -5,7 +5,10 @@ python:
   - "3.4"
   - "3.4"
 # command to install dependencies
 # command to install dependencies
 install:
 install:
-  - "sudo apt-get install -y libacl1-dev liblz4-dev"
+  - "sudo add-apt-repository -y ppa:gezakovacs/lz4"
+  - "sudo apt-get update"
+  - "sudo apt-get install -y liblz4-dev"
+  - "sudo apt-get install -y libacl1-dev"
   - "pip install --use-mirrors Cython"
   - "pip install --use-mirrors Cython"
   - "pip install -e ."
   - "pip install -e ."
 # command to run tests
 # command to run tests