valkey/utils/releasetools/03_test_release.sh
Shivshankar a4da212f11
upadate release tool script to valkey (#239)
Updated release-tool scripts to valkey, This PR covered only the file
names for the tarball but still location needs to be updated
accordingly.

Signed-off-by: Shivshankar-Reddy <shiva.sheri.github@gmail.com>
2024-04-14 13:22:48 -07:00

29 lines
520 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="valkey-${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
mkdir test_release_tmp_dir
cd test_release_tmp_dir
rm -f $TARNAME
rm -rf valkey-${TAG}
wget $DOWNLOADURL
tar xvzf $TARNAME
cd valkey-${TAG}
make
./runtest
./runtest-sentinel
./runtest-cluster
./runtest-moduleapi