Commit fa5e88f170cb37c7b2b9bb015c8c5b854ffd8a3e

Josh Triplett 2014-03-26T23:53:57

.travis.yml: Make the build command more readable by splitting at && "script" can contain multiple commands to run in sequence.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/.travis.yml b/.travis.yml
index 7c8d302..6cf0791 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,4 +14,9 @@ before_script:
   - sudo apt-get install dejagnu texinfo
   - if [ "$HOST" = i386-pc-linux-gnu ] ; then sudo apt-get install gcc-multilib g++-multilib && CC="$CC -m32" ; fi
 
-script: ./autogen.sh && ./configure ${HOST+--host=$HOST} && make && make dist && make check
+script:
+  - ./autogen.sh
+  - ./configure ${HOST+--host=$HOST}
+  - make
+  - make dist
+  - make check