From 2f83aa9e1b452b5db7974dd596bc1228bc69fcca Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Mon, 10 Jun 2019 18:58:47 +0900 Subject: [PATCH] Fix multi-line text travis issue --- .travis.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 973695a3..6843f4bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,8 +64,7 @@ before_script: - git submodule update --init - | if [ "$CI_BUILD" = "autotools" ]; then - autoreconf -i - ./configure --with-mruby PKG_CONFIG_PATH=$PKG_CONFIG_PATH + autoreconf -i && ./configure --with-mruby PKG_CONFIG_PATH=$PKG_CONFIG_PATH fi - | if [ "$CI_BUILD" = "cmake" ]; then @@ -78,8 +77,10 @@ script: fi - | if [ "$CI_BUILD" = "cmake" ]; then - make - make check + make && make check + fi + - | + if [ "$CI_BUILD" = "cmake" ]; then # Integration tests for nghttpx; autotools build erases build # for packaging test. cd integration-tests