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>
This commit is contained in:
David Sterba 2018-02-08 01:24:25 +01:00
parent 5720b3ae9a
commit 47cbdeb836
2 changed files with 28 additions and 0 deletions

13
travis/build-default Executable file
View File

@ -0,0 +1,13 @@
#!/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

15
travis/images/test-build Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
# usage: $0 [branch name] [configure parameters]
urlbase="https://github.com/kdave/btrfs-progs/archive/"
branch=${1:-devel}
url=${urlbase}${branch}.tar.gz
shift
echo "btrfs-progs build test of branch ${branch}"
cd /tmp
wget "$url" -O ${branch}.tar.gz
tar xf ${branch}.tar.gz
cd btrfs-progs-${branch}
travis/build-default "$@"