1
0

Add circleci tests

This commit is contained in:
nicolas.dorier
2019-09-04 16:21:42 +09:00
parent acb7fdaf2d
commit a428d06473
3 changed files with 41 additions and 0 deletions

8
.circleci/test-connectivity.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
while true; do
if curl -sL -w "%{http_code}\\n" "http://localhost/" -o /dev/null > /dev/null; then
break
fi
sleep 1
done