btrfs-progs/travis/build-default
David Sterba 47cbdeb836 btrfs-progs: ci: add support scripts for docker build
The test-build resides inside the docker image and is supposed to be
called from outside, downloads the branch and calls build-default.
Buid-default will run up to make.

Signed-off-by: David Sterba <dsterba@suse.com>
2018-02-08 01:24:25 +01:00

14 lines
229 B
Bash
Executable File

#!/bin/sh
# usage: $0 [optional arguments to configure]
if ! [ -f "./autogen.sh" ]; then
echo "ERROR: cannot find autogen.sh, run from the top level directory"
exit 1
fi
set -e
./autogen.sh
./configure "$@"
make