From e5623400143d5406807129ec46c4238c0ad8d2f5 Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Thu, 1 Aug 2019 14:40:30 +0300 Subject: [PATCH] travis: fix the build script It turns out that indentation matters... My apologies that it took so long to figure this out --- .travis.yml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6ceba3fd9..dde343aa7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 \ '