summaryrefslogtreecommitdiff
path: root/tests/frontend/travis/sauce_tunnel.sh
blob: b19268d0583343a1f164329e2e63fd2d9c1f1394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
# download and unzip the sauce connector
curl https://saucelabs.com/downloads/sc-latest-linux.tar.gz > /tmp/sauce.tar.gz
tar zxf /tmp/sauce.tar.gz --directory /tmp
mv /tmp/sc-*-linux /tmp/sauce_connect

# start the sauce connector in background and make sure it doesn't output the secret key
(/tmp/sauce_connect/bin/sc --user $SAUCE_USERNAME --key $SAUCE_ACCESS_KEY --pidfile /tmp/sauce.pid --readyfile /tmp/tunnel > /dev/null )&

# wait for the tunnel to build up
while [ ! -e "/tmp/tunnel" ]
  do
  sleep 1
done