You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2016/01/23 16:37:10 UTC

libcloud git commit: Try resulting apt package via addon, this should allow us to use new container based infrastructure.

Repository: libcloud
Updated Branches:
  refs/heads/trunk 3bb40206d -> 17384cabe


Try resulting apt package via addon, this should allow us to use new container
based infrastructure.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/17384cab
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/17384cab
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/17384cab

Branch: refs/heads/trunk
Commit: 17384cabeb99ae8fbf634d01f444f0f3b0b8c0d6
Parents: 3bb4020
Author: Tomaz Muraus <to...@tomaz.me>
Authored: Sat Jan 23 16:36:37 2016 +0100
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Sat Jan 23 16:36:37 2016 +0100

----------------------------------------------------------------------
 .travis.yml | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/17384cab/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index f2e33e9..8fa3ed8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,4 +1,5 @@
 language: python
+sudo: false
 # Add or remove version for match with Travis support
 python:
     - 2.6
@@ -16,20 +17,20 @@ env:
 matrix:
   fast_finish: true
   include:
-    - sudo: required
-      python: 2.7
+    - python: 2.7
       env: ENV=lint
       before_script: TOX_ENV=lint
-    - sudo: required
-      python: 2.7
+    - python: 2.7
       env: ENV=docs
       before_script: TOX_ENV=docs-travis
-      before_install:
-        - sudo apt-get update -qq
-        - sudo apt-get install -y graphviz
       # Trigger ReadTheDocs build
       after_success: ./contrib/trigger_rtd_build.py 8284
 
+addons:
+  apt:
+    packages:
+      - graphviz  # needed for embedded graphs in the docs
+
 install:
   - pip install --upgrade "pip<8.0.0"
   - pip install "virtualenv<14.0.0"