.travis.yml: Make the build command more readable by splitting at &&
authorJosh Triplett <josh@joshtriplett.org>
Thu, 27 Mar 2014 06:53:57 +0000 (23:53 -0700)
committerJosh Triplett <josh@joshtriplett.org>
Thu, 27 Mar 2014 07:38:53 +0000 (00:38 -0700)
"script" can contain multiple commands to run in sequence.

.travis.yml

index 7c8d302..6cf0791 100644 (file)
@@ -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