diff options
author | Kristján Valur Jónsson <sweskman@gmail.com> | 2022-08-29 21:30:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-29 14:30:08 -0700 |
commit | 8491a65a95527ced112310faa068eba395212a32 (patch) | |
tree | bd7c8036f0cf63746b9422ee6791d09f3ed2de23 /test.sh | |
parent | 77e4f09ea8e01a500586c6b2aa37a76c98e172f0 (diff) |
Add Github Actions CI workflow for hiredis: Arm, Arm64, 386, windows. (#943)
* Add docker support to test.sh
specifying a REDIS_DOCKER env var will run this as a server.
* Add initial test workflow
* Add workflow test to test 32 bit build
* Add ARM x compilation tests
* Add tests for windows platform
* Test with valgrind
Diffstat (limited to 'test.sh')
-rwxr-xr-x | test.sh | 47 |
1 files changed, 36 insertions, 11 deletions
@@ -4,10 +4,11 @@ REDIS_SERVER=${REDIS_SERVER:-redis-server} REDIS_PORT=${REDIS_PORT:-56379} REDIS_SSL_PORT=${REDIS_SSL_PORT:-56443} TEST_SSL=${TEST_SSL:-0} -SKIPS_AS_FAILS=${SKIPS_AS_FAILS-:0} +SKIPS_AS_FAILS=${SKIPS_AS_FAILS:-0} ENABLE_DEBUG_CMD= SSL_TEST_ARGS= -SKIPS_ARG= +SKIPS_ARG=${SKIPS_ARG:-} +REDIS_DOCKER=${REDIS_DOCKER:-} # We need to enable the DEBUG command for redis-server >= 7.0.0 REDIS_MAJOR_VERSION="$(redis-server --version|awk -F'[^0-9]+' '{ print $2 }')" @@ -50,22 +51,34 @@ if [ "$TEST_SSL" = "1" ]; then fi cleanup() { - set +e - kill $(cat ${PID_FILE}) + if [ -n "${REDIS_DOCKER}" ] ; then + docker kill redis-test-server + else + set +e + kill $(cat ${PID_FILE}) + fi rm -rf ${tmpdir} } trap cleanup INT TERM EXIT - +# base config cat > ${tmpdir}/redis.conf <<EOF -daemonize yes -${ENABLE_DEBUG_CMD} pidfile ${PID_FILE} port ${REDIS_PORT} -bind 127.0.0.1 unixsocket ${SOCK_FILE} +unixsocketperm 777 +EOF + +# if not running in docker add these: +if [ ! -n "${REDIS_DOCKER}" ]; then +cat >> ${tmpdir}/redis.conf <<EOF +daemonize yes +${ENABLE_DEBUG_CMD} +bind 127.0.0.1 EOF +fi +# if doing ssl, add these if [ "$TEST_SSL" = "1" ]; then cat >> ${tmpdir}/redis.conf <<EOF tls-port ${REDIS_SSL_PORT} @@ -75,13 +88,25 @@ tls-key-file ${SSL_KEY} EOF fi +echo ${tmpdir} cat ${tmpdir}/redis.conf -${REDIS_SERVER} ${tmpdir}/redis.conf - +if [ -n "${REDIS_DOCKER}" ] ; then + chmod a+wx ${tmpdir} + chmod a+r ${tmpdir}/* + docker run -d --rm --name redis-test-server \ + -p ${REDIS_PORT}:${REDIS_PORT} \ + -p ${REDIS_SSL_PORT}:${REDIS_SSL_PORT} \ + -v ${tmpdir}:${tmpdir} \ + ${REDIS_DOCKER} \ + redis-server ${tmpdir}/redis.conf +else + ${REDIS_SERVER} ${tmpdir}/redis.conf +fi # Wait until we detect the unix socket +echo waiting for server while [ ! -S "${SOCK_FILE}" ]; do sleep 1; done # Treat skips as failures if directed -[ "$SKIPS_AS_FAILS" = 1 ] && SKIPS_ARG="--skips-as-fails" +[ "$SKIPS_AS_FAILS" = 1 ] && SKIPS_ARG="${SKIPS_ARG} --skips-as-fails" ${TEST_PREFIX:-} ./hiredis-test -h 127.0.0.1 -p ${REDIS_PORT} -s ${SOCK_FILE} ${SSL_TEST_ARGS} ${SKIPS_ARG} |