btrfs-progs/travis/images/test-build
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

16 lines
339 B
Bash
Executable File

#!/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 "$@"