mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00
20 lines
393 B
Bash
20 lines
393 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
KERL_INSTALL_PATH=~/erlang
|
||
|
KERL_RELEASES="r15b01 r15b02 r15b03 r16b r16b01 r16b02 r16b03 maint master"
|
||
|
|
||
|
make build-tests
|
||
|
|
||
|
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
|