blob: 1e0a49d68af3c42d7b421fa828957fc49be6f45b (
plain) (
blame)
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
|
#!/bin/bash
SOURCE_ROOT="${HOME}/src/source"
if [ ! -d "${SOURCE_ROOT}" ]; then
echo "It looks like ${SOURCE_ROOT} is not available."
exit 1
fi
TARGETS=(
'science/src/python/twitter/checkstyle:check'
'science/src/python/twitter/messaging/julep/:julep'
'science/src/python/twitter/messaging/oncall/:oncall'
'science/src/python/twitter/messaging/tools/:bookkeeper'
'science/src/python/twitter/messaging/tools/:bookkeeper-rereplicator'
'science/src/python/twitter/messaging/tools/:customers-requests'
'science/src/python/twitter/messaging/tools/:host-status'
'science/src/python/twitter/messaging/tools/:msg-config'
'science/src/python/twitter/messaging/tools/:partition-ownership'
'science/src/python/twitter/messaging/tools/:proxy-admin'
'science/src/python/twitter/messaging/xdc_replicator_check/:streams-to-replicate'
'science/src/python/twitter/ops/mesos/bin/:mesosops'
)
cd "${SOURCE_ROOT}"
for target in "${TARGETS[@]}"; do
echo -n "Build $target"
./pants -q binary "${target}"
done
echo "Done."
|