-
Notifications
You must be signed in to change notification settings - Fork 62
/
itest.sh
executable file
·62 lines (47 loc) · 1.32 KB
/
itest.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash
set -euxo pipefail
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y software-properties-common gdebi-core curl
add-apt-repository -y ppa:deadsnakes/ppa
apt-get update
gdebi --non-interactive /work/dist/*.deb
# TODO: change default MASTER config to not require ssh agent
apt-get install -y ssh
service ssh start
eval $(ssh-agent)
trond --help
tronfig --help
/opt/venvs/tron/bin/python - <<EOF
from yaml import CSafeLoader
from yaml import CSafeDumper
EOF
export TRON_WORKDIR=/nail/tron
mkdir -p $TRON_WORKDIR
export TRON_START_TIME=$(date +%s)
trond --working-dir=$TRON_WORKDIR &
TRON_PID=$!
for i in {1..5}; do
if curl localhost:8089/api/status 2>/dev/null; then
break
fi
if [ "$i" == "5" ]; then
echo "Failed to start"
kill -9 $TRON_PID
exit 1
fi
sleep 1
done
kill -0 $TRON_PID
curl localhost:8089/api/status | grep -qi alive
tronfig -p MASTER
tronfig -n MASTER /work/testfiles/MASTER.yaml
tronfig /work/testfiles/MASTER.yaml
cat /work/testfiles/MASTER.yaml | tronfig -n MASTER -
if test -L /opt/venvs/tron/lib/python3.8/encodings/punycode.py; then
echo "Whoa, the tron package shouldn't have an encoding symlink!"
echo "Check out https://github.com/spotify/dh-virtualenv/issues/272"
exit 1
fi
kill -SIGTERM $TRON_PID
wait $TRON_PID || true