mirror of
http://github.com/valkey-io/valkey
synced 2024-11-21 16:46:15 +00:00
a4da212f11
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>
29 lines
520 B
Bash
Executable File
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
|