[geany/geany-plugins] 783a03: travis: Place each script command on its own

Colomban Wendling git-noreply at xxxxx
Fri Mar 11 18:32:49 UTC 2016


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Fri, 11 Mar 2016 18:32:49 UTC
Commit:      783a03e37dad9e59931c9091773f6490c82d10a0
             https://github.com/geany/geany-plugins/commit/783a03e37dad9e59931c9091773f6490c82d10a0

Log Message:
-----------
travis: Place each script command on its own

This makes Travis report the very command that triggered the error
rather than the whole `script` section.


Modified Paths:
--------------
    .travis.yml

Modified: .travis.yml
13 lines changed, 6 insertions(+), 7 deletions(-)
===================================================================
@@ -128,12 +128,11 @@ before_script:
   - export CFLAGS="-g -O2 -Werror=pointer-arith -Werror=aggregate-return -Werror=implicit-function-declaration"
 
 script:
-  - >
-    NOCONFIGURE=1 ./autogen.sh  &&
-    mkdir _build                &&
-    cd _build                   &&
-    ../configure                &&
-    make -j2                    &&
-    make -j2 check
+  - NOCONFIGURE=1 ./autogen.sh
+  - mkdir _build && cd _build
+  - ../configure
+  - make -j2
+  - make -j2 check
+
 after_script:
   - test -z "$TEMPDIR" || rm -rf "$TEMPDIR"



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Plugins-Commits mailing list