mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-04 01:57:08 +08:00
18 lines
376 B
Bash
Executable file
18 lines
376 B
Bash
Executable file
#!/bin/sh
|
|
# Install and start Sauce Connect
|
|
set -e
|
|
|
|
NAME=sc-4.4.3-linux.tar.gz
|
|
|
|
SC_TEMP=`mktemp -d -t sc.XXXX`
|
|
wget -O - https://saucelabs.com/downloads/$NAME | tar -x -z -C $SC_TEMP
|
|
|
|
$SC_TEMP/*/bin/sc \
|
|
-i ${TRAVIS_JOB_NUMBER} \
|
|
-f $SC_TEMP/ready \
|
|
-l $SC_TEMP/log &
|
|
|
|
echo "Waiting for Sauce Connect readyfile"
|
|
while [ ! -f $SC_TEMP/ready ]; do
|
|
sleep .5
|
|
done
|