summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-07-17 14:47:34 +0200
committerPeter Simons <simons@cryp.to>2015-07-17 14:59:05 +0200
commit0841cd0071529af2b2540f5537a3d03f23ca8e6a (patch)
treed89985c542ef8118075e8874d7748e2803c852cf /.travis.yml
parent63836a18ae1fae0a25c15cc56df3d8f47206c76b (diff)
downloadautoconf-archive-0841cd0071529af2b2540f5537a3d03f23ca8e6a.tar.gz
travis.yml: improve CI build script
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml16
1 files changed, 14 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index a7cfd14..a687747 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,17 @@
+# .travis.yml
+
language: c
+
git:
depth: 50000
-install: sudo apt-get install --allow-unauthenticated -qq gnulib lzip texlive tidy python3
-script: ./bootstrap.sh && ./configure && make PYTHON=python3 -j4 maintainer-all all && make distcheck && make web-manual && ./fix-website.sh
+
+install:
+ - travis_retry sudo apt-get update
+ - travis_retry sudo apt-get install --allow-unauthenticated -qq gnulib lzip texlive tidy python3
+
+script:
+ - ./bootstrap.sh
+ - ./configure
+ - make PYTHON=python3 -j4 maintainer-all all
+ - make distcheck
+ - make web-manual && ./fix-website.sh