mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 09:56:06 +00:00
travis: cache leveldb artifacts to reduce build time
This commit is contained in:
24
tests/build-leveldb.sh
Executable file
24
tests/build-leveldb.sh
Executable file
@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
LEVELDB_VERSION="$1"
|
||||
if [ ! -f "./leveldb-mcpe/built_version" ] || [ $(cat "./leveldb-mcpe/built_version") != "$LEVELDB_VERSION" ]; then
|
||||
echo "Building new LevelDB"
|
||||
rm -rf "./leveldb-mcpe" || true
|
||||
mkdir "./leveldb-mcpe"
|
||||
|
||||
curl -fsSL "https://github.com/pmmp/leveldb-mcpe/archive/$LEVELDB_VERSION.tar.gz" | tar -zx
|
||||
mv "./leveldb-mcpe-$LEVELDB_VERSION" leveldb-mcpe-build
|
||||
cd leveldb-mcpe-build
|
||||
make -j4 sharedlibs
|
||||
|
||||
#put the artifacts in a separate dir, to avoid bloating travis cache"
|
||||
mv out-shared/libleveldb.* ../leveldb-mcpe
|
||||
mv include ../leveldb-mcpe
|
||||
cd ../leveldb-mcpe
|
||||
echo "$LEVELDB_VERSION" > "./built_version"
|
||||
cd ..
|
||||
else
|
||||
echo "Using cached build for LevelDB version $LEVELDB_VERSION"
|
||||
fi
|
Reference in New Issue
Block a user