summaryrefslogtreecommitdiff
path: root/tests/frontend/travis/sauce_tunnel.sh
blob: f519f8d9584cee1d83ba60a3ed27d1de6970a95c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
# download and unzip the sauce connector
curl http://saucelabs.com/downloads/Sauce-Connect-latest.zip > /tmp/sauce.zip
unzip /tmp/sauce.zip -d /tmp

# start the sauce connector in background and make sure it doesn't output the secret key
(java -jar /tmp/Sauce-Connect.jar $SAUCE_USERNAME $SAUCE_ACCESS_KEY -f /tmp/tunnel > /dev/null )&

# save the sauce pid in a file
echo $! > /tmp/sauce.pid

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