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:
parent
5720b3ae9a
commit
47cbdeb836
|
@ -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
|
|
@ -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 "$@"
|
Loading…
Reference in New Issue