build steps for cache servers
This commit is contained in:
Executable
+17
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
function exit_if_fail {
|
||||
command=$@
|
||||
echo "Executing '$command'"
|
||||
eval $command
|
||||
rc=$?
|
||||
if [ $rc -ne 0 ]; then
|
||||
echo "'$command' returned $rc."
|
||||
exit $rc
|
||||
fi
|
||||
}
|
||||
|
||||
echo "running redis and memcache tests"
|
||||
#set -e
|
||||
#time for d in $(go list ./pkg/...); do
|
||||
time exit_if_fail go test -tags="redis memcached" ./pkg/infra/distcache/...
|
||||
#done
|
||||
Reference in New Issue
Block a user