Travis-CI: Use individual script steps, to allow collapsing them in the log
parent
85ad712764
commit
3c70b9f5c8
13
.travis.yml
13
.travis.yml
|
@ -29,11 +29,8 @@ addons:
|
||||||
|
|
||||||
cache: ccache
|
cache: ccache
|
||||||
|
|
||||||
script: |
|
script:
|
||||||
wget -O - http://nginx.org/download/nginx-${NGINX}.tar.gz | tar -xzf -
|
- wget -O - http://nginx.org/download/nginx-${NGINX}.tar.gz | tar -xzf -
|
||||||
rm -rf prefix/
|
- rm -rf prefix/
|
||||||
cd nginx-${NGINX}
|
- ( cd nginx-${NGINX} && ./configure --add-${DYNAMIC:+dynamic-}module=.. --with-http_addition_module --prefix="$(pwd)/../prefix" && make install )
|
||||||
./configure --add-${DYNAMIC:+dynamic-}module=.. --with-http_addition_module --prefix="$(pwd)/../prefix"
|
- ./t/run "$(pwd)/prefix" ${DYNAMIC}
|
||||||
make install
|
|
||||||
cd ..
|
|
||||||
./t/run "$(pwd)/prefix" ${DYNAMIC}
|
|
||||||
|
|
Loading…
Reference in New Issue