0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00
cowboy/all.sh

20 lines
372 B
Bash
Raw Normal View History

#!/bin/sh
KERL_INSTALL_PATH=~/erlang
2014-08-01 14:26:51 +02:00
KERL_RELEASES="r16b01 r16b02 r16b03-1 17.0 17.1.2"
2014-08-01 14:26:51 +02:00
make build-ct-suites
for rel in $KERL_RELEASES
do
echo
echo " TESTING $rel"
echo
. $KERL_INSTALL_PATH/$rel/activate
cp ~/.kerl/builds/$rel/otp_src_*/lib/ssl/test/erl_make_certs.erl \
deps/ct_helper/src/
CT_OPTS="-label $rel" make tests
done
xdg-open logs/all_runs.html