travis: fix cwd when running tests

Make sure we don't go messing with the cwd when running different tests.
This way we can always assume we start in the top level source dir.
This commit is contained in:
Mike Frysinger 2016-06-21 16:55:02 -04:00
parent 5325fd5162
commit f140a0339f

View file

@ -49,9 +49,10 @@ build() {
# Do an out-of-tree build and make sure we can create a release tarball. # Do an out-of-tree build and make sure we can create a release tarball.
build_out_of_tree() { build_out_of_tree() {
mkdir -p build/native mkdir -p build/native
cd build/native pushd build/native >/dev/null
../../configure ../../configure
make -j${JOBS} distcheck VERBOSE=1 make -j${JOBS} distcheck VERBOSE=1
popd >/dev/null
} }
main() { main() {