blob: 85d4f4e3d2076d1dfd3541840bc6d33c286e301c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
TARGETS=(
'science/src/python/twitter/checkstyle:check'
'science/src/python/twitter/messaging/tools/:bookkeeper'
'science/src/python/twitter/messaging/tools/:customers-requests'
'science/src/python/twitter/messaging/tools/:eventbus-partition-ownership'
'science/src/python/twitter/messaging/tools/:host-status'
'science/src/python/twitter/messaging/tools/:msg-config'
'science/src/python/twitter/messaging/tools/:proxy-admin'
)
cd ~/src/source
for target in "${TARGETS[@]}"; do
echo -n "Build $target"
./pants -q binary "${target}"
done
echo "Done."
|