mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
7f19a04f0f
* update daily CI to include cluster and sentinel tests * update daily CI to run when creating a new release * update release scripts to work on the new redis.io hosts
28 lines
490 B
Bash
Executable File
28 lines
490 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ $# != "1" ]
|
|
then
|
|
echo "Usage: ./utils/releasetools/03_test_release.sh <version_tag>"
|
|
exit 1
|
|
fi
|
|
|
|
TAG=$1
|
|
TARNAME="redis-${TAG}.tar.gz"
|
|
DOWNLOADURL="http://download.redis.io/releases/${TARNAME}"
|
|
|
|
echo "Doing sanity test on the actual tarball"
|
|
|
|
cd /tmp
|
|
rm -rf test_release_tmp_dir
|
|
cd test_release_tmp_dir
|
|
rm -f $TARNAME
|
|
rm -rf redis-${TAG}
|
|
wget $DOWNLOADURL
|
|
tar xvzf $TARNAME
|
|
cd redis-${TAG}
|
|
make
|
|
./runtest
|
|
./runtest-sentinel
|
|
./runtest-cluster
|
|
./runtest-moduleapi
|