Fix multi-line text travis issue

This commit is contained in:
Tatsuhiro Tsujikawa 2019-06-10 18:58:47 +09:00
parent fc591d0cd6
commit 2f83aa9e1b
1 changed files with 5 additions and 4 deletions

View File

@ -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