summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <qris@users.noreply.github.com>2015-08-31 21:05:37 +0100
committerChris Wilson <qris@users.noreply.github.com>2015-08-31 21:05:37 +0100
commit12ceb036f826c4796a47397f0c24aa3bdcf4ed42 (patch)
tree51eba527348fc67805091f061e61e79f9df92982
parente02682889bf5fade4d909299fd8da17633e81fca (diff)
parent14f3df653cedf62b19cf46c3712ebe10c1e6623d (diff)
Merge pull request #1 from cmorty/patch-1
Improve travis output by turning the single command to multiple steps
-rw-r--r--.travis.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 381479b1..977cbba7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,5 +16,13 @@ addons:
- libwww-perl
- xsltproc
- zlib1g-dev
-script: ./bootstrap && ./configure && make && ./runtest.pl ALL debug && ./runtest.pl ALL release
+
+before_script:
+ - ./bootstrap
+ - ./configure
+ - make
+
+script:
+ - ./runtest.pl ALL debug
+ - ./runtest.pl ALL release