btrfs-progs: ci: cache built dependencies

For a slight speed up of the build, cache reiserfs and zstd. A quick
cache validity is done, or it can be cleared manually on travis web UI.

Signed-off-by: David Sterba <dsterba@suse.com>
master
David Sterba 2018-02-24 01:57:42 +01:00
parent f0a376df47
commit efc08d3390
3 changed files with 35 additions and 4 deletions

View File

@ -25,6 +25,9 @@ compiler:
cache:
ccache: true
directories:
- tmp-cached-reiser
- tmp-cached-zstd
git:
depth: 1

View File

@ -2,14 +2,28 @@
# download, build and install reiserfs library
version=3.6.27
dir=tmp-cached-reiser
stamp="$dir/.last-build-reiser"
here=`pwd`
set -e
mkdir tmp-reiser
cd tmp-reiser
if [ -d "$dir" -a -f "$stamp" ]; then
echo "Using valid cache for $dir, built" `cat "$stamp"`
cd "$dir"
cd reiserfsprogs-${version}
sudo make install
exit 0
fi
echo "No or stale cache for $dir, rebuilding"
rm -rf "$dir"
mkdir "$dir"
cd "$dir"
wget https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${version}/reiserfsprogs-${version}.tar.xz
tar xf reiserfsprogs-${version}.tar.xz
cd reiserfsprogs-${version}
./configure --prefix=/usr
make all
sudo make install
date > "$here/$stamp"

View File

@ -2,13 +2,27 @@
# download, build and install the zstd library
version=1.3.3
dir=tmp-cached-zstd
stamp="$dir/.last-build-zstd"
here=`pwd`
set -e
mkdir tmp-zstd
cd tmp-zstd
if [ -d "$dir" -a -f "$stamp" ]; then
echo "Using valid cache for $dir, built" `cat "$stamp"`
cd "$dir"
cd zstd-${version}
sudo make install PREFIX=/usr
exit 0
fi
echo "No or stale cache for $dir, rebuilding"
rm -rf "$dir"
mkdir "$dir"
cd "$dir"
wget https://github.com/facebook/zstd/archive/v${version}.tar.gz
tar xf v${version}.tar.gz
cd zstd-${version}
make
sudo make install PREFIX=/usr
date > "$here/$stamp"