From 5b85ea13147e003f9cbd1705c7a1187bd77a005b Mon Sep 17 00:00:00 2001 From: expwnent Date: Mon, 21 Sep 2015 18:38:11 -0400 Subject: [PATCH 1/3] Attempt to move to new travis infrastructure. --- .travis.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b93f99312..7e17d60e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,16 @@ +sudo: false +addons: + apt: + packages: + lua5.2 language: cpp env: matrix: -LUA_VERSION=5.2 before_install: -- sudo apt-get install lua$LUA_VERSION -- sudo pip install docutils +#- sudo apt-get install lua$LUA_VERSION +#- sudo pip install docutils + pip install docutils script: - python travis/pr-check-base.py - python travis/lint.py From f80aa7fd2ef5f09fb3e07b2cb8d7b7b98db1f92f Mon Sep 17 00:00:00 2001 From: expwnent Date: Mon, 21 Sep 2015 18:50:21 -0400 Subject: [PATCH 2/3] travis: Try python-docutils package. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7e17d60e2..a3e0084ab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,8 @@ sudo: false addons: apt: packages: - lua5.2 + - lua5.2 + - python-docutils language: cpp env: matrix: @@ -10,7 +11,7 @@ env: before_install: #- sudo apt-get install lua$LUA_VERSION #- sudo pip install docutils - pip install docutils +# pip install docutils script: - python travis/pr-check-base.py - python travis/lint.py From e707e0122157b9ac4c9c09a25e02e31ef33dc81a Mon Sep 17 00:00:00 2001 From: expwnent Date: Mon, 21 Sep 2015 18:52:42 -0400 Subject: [PATCH 3/3] travis: Try pip again. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a3e0084ab..6c865784e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ addons: apt: packages: - lua5.2 - - python-docutils +# - python3-docutils language: cpp env: matrix: @@ -11,7 +11,7 @@ env: before_install: #- sudo apt-get install lua$LUA_VERSION #- sudo pip install docutils -# pip install docutils + pip install --user docutils script: - python travis/pr-check-base.py - python travis/lint.py