forked from google/copybara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudbuild.sh
executable file
·51 lines (39 loc) · 1.1 KB
/
cloudbuild.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
#!/bin/bash -e
# Build script for Google Cloud Build
function log() {
d=$(date +'%Y-%m-%d %H:%M:%S')
echo $d" "$1
}
log "Running Copybara tests"
log "Fetching dependencies"
log "Running apt-get update --fix-missing"
apt-get update --fix-missing
apt-get install locales
apt-get -y install mercurial
apt-get install -y lsb-release
apt-get install -y software-properties-common
add-apt-repository ppa:git-core/ppa -y
apt install git -y
apt-get -y install quilt
log "Extracting Bazel"
# Only because first time it extracts the installation
bazel version
echo "-----------------------------------"
echo "Versions:"
lsb_release -a
hg --version | grep "(version" | sed 's/.*[(]version \([^ ]*\)[)].*/Mercurial: \1/'
git --version | sed 's/git version/Git:/'
bazel version | grep "Build label" | sed 's/Build label:/Bazel:/'
java -version
echo "Quilt:"
quilt --version
echo "-----------------------------------"
log "Setting Locale"
export LANGUAGE=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
locale-gen en_US.UTF-8
update-locale LANG=en_US.UTF-8
echo "Running 'bazel $@'"
time bazel "$@"
log "Done"