travis: fix the build script

It turns out that indentation matters...
My apologies that it took so long to figure this out
This commit is contained in:
George Kiagiadakis 2019-08-01 14:40:30 +03:00 committed by Wim Taymans
parent b511bd2c6a
commit e562340014

View file

@ -11,16 +11,17 @@ before_install:
script:
- >
docker run -it --rm -v $PWD:/workdir gkiagia/pipewire_build_environment:latest bash -c
'cd /workdir && env MESON=meson ./autogen.sh \
-Ddocs=true \
-Daudiomixer=true \
-Daudiotestsrc=true \
-Dffmpeg=true \
-Dtest=true \
-Dvideotestsrc=true \
-Dvolume=true \
&& make \
&& make test \
&& env DESTDIR=i make install \
&& env PREFIX=build/i/usr/local ./check_missing_headers.sh \
'cd /workdir \
&& env MESON=meson ./autogen.sh \
-Ddocs=true \
-Daudiomixer=true \
-Daudiotestsrc=true \
-Dffmpeg=true \
-Dtest=true \
-Dvideotestsrc=true \
-Dvolume=true \
&& make \
&& make test \
&& env DESTDIR=$PWD/build/i make install \
&& env PREFIX=$PWD/build/i/usr/local ./check_missing_headers.sh \
'