diff options
author | Peter Simons <simons@cryp.to> | 2015-09-03 22:30:00 +0200 |
---|---|---|
committer | Peter Simons <simons@cryp.to> | 2015-09-03 22:55:01 +0200 |
commit | 08d9029ba984b8148216877e93796ec6b3c055be (patch) | |
tree | 8c6341f18429c1274a808f3682596477bca2a27e | |
parent | e7e96ed7a92fe195f14b6fc5f62e0a020faffa50 (diff) | |
download | autoconf-archive-08d9029ba984b8148216877e93796ec6b3c055be.tar.gz |
travis.yml: update builds to new container-based infrastructure
-rw-r--r-- | .travis.yml | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index ba26eb6..f6b9bb5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,17 +2,26 @@ language: c +sudo: false + git: depth: 50000 -install: - - travis_retry sudo apt-key update - - travis_retry sudo apt-get update - - travis_retry sudo apt-get install -qq gnulib lzip texlive tidy python3 +addons: + apt: + packages: + # - gnulib + - python3 + - texlive + - texinfo + - tidy + +before_install: + - git clone --depth=1 git://git.savannah.gnu.org/gnulib.git script: - ./bootstrap.sh - ./configure - - make PYTHON=python3 -j4 maintainer-all all + - make PYTHON=python3 -j$(nproc) maintainer-all all - make distcheck - make web-manual && ./fix-website.sh |