-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·231 lines (205 loc) · 9.37 KB
/
build.sh
File metadata and controls
executable file
·231 lines (205 loc) · 9.37 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#!/usr/bin/env bash
# PixelBuilds build helper script
# red = errors, cyan = warnings, green = confirmations, blue = informational
# plain for generic text, bold for titles, reset flag at each end of line
# plain blue should not be used for readability reasons - use plain cyan instead
CLR_RST=$(tput sgr0) ## reset flag
CLR_RED=$CLR_RST$(tput setaf 1) # red, plain
CLR_GRN=$CLR_RST$(tput setaf 2) # green, plain
CLR_BLU=$CLR_RST$(tput setaf 4) # blue, plain
CLR_CYA=$CLR_RST$(tput setaf 6) # cyan, plain
CLR_BLD=$(tput bold) ## bold flag
CLR_BLD_RED=$CLR_RST$CLR_BLD$(tput setaf 1) # red, bold
CLR_BLD_GRN=$CLR_RST$CLR_BLD$(tput setaf 2) # green, bold
CLR_BLD_BLU=$CLR_RST$CLR_BLD$(tput setaf 4) # blue, bold
CLR_BLD_CYA=$CLR_RST$CLR_BLD$(tput setaf 6) # cyan, bold
# Set defaults
BUILD_TYPE="userdebug"
function checkExit () {
EXIT_CODE=$?
if [ $EXIT_CODE -ne 0 ]; then
echo "${CLR_BLD_RED}Build failed!${CLR_RST}"
echo -e ""
exit $EXIT_CODE
fi
}
# Releaser path
RELEASE_HELPER_PATH="vendor/pb/private/release.sh"
# Uploader path
UPLOAD_HELPER_PATH="vendor/pb/private/upload.sh"
# Output usage help
function showHelpAndExit {
echo -e "${CLR_BLD_BLU}Usage: $0 <device> [options]${CLR_RST}"
echo -e ""
echo -e "${CLR_BLD_BLU}Options:${CLR_RST}"
echo -e "${CLR_BLD_BLU} -h, --help Display this help message${CLR_RST}"
echo -e "${CLR_BLD_BLU} -c, --clean Wipe the tree before building${CLR_RST}"
echo -e "${CLR_BLD_BLU} -i, --installclean Dirty build - Use 'installclean'${CLR_RST}"
echo -e "${CLR_BLD_BLU} -s, --repo-sync Sync before building${CLR_RST}"
echo -e "${CLR_BLD_BLU} -g, --gerrit-pick Pick changes from gerrit for the given topic name (ssh auth){CLR_RST}"
echo -e "${CLR_BLD_BLU} -r, --release Whether we should do a signed release build (Will not work in non-production env)"
echo -e "${CLR_BLD_BLU} -u, --upload Whether we should upload a build (Will not work in non-production env)"
echo -e "${CLR_BLD_BLU} -t, --build-type Specify build type${CLR_RST}"
echo -e "${CLR_BLD_BLU} -j, --jobs Specify jobs/threads to use${CLR_RST}"
echo -e "${CLR_BLD_BLU} -k, --sign-keys Specify path to sign key mappings (Non-release builds have to be signed manually!)${CLR_RST}"
echo -e "${CLR_BLD_BLU} -p, --pwfile Specify path to sign key password (Non-release builds have to be signed manually!)file${CLR_RST}"
exit 1
}
# Setup getopt.
long_opts="help,clean,installclean,repo-sync,release,build-type:,jobs:,gerrit-pick:,sign-keys:,pwfile:,backup-unsigned,delta:,imgzip,version:"
getopt_cmd=$(getopt -o hcruis:t:j:k:p:g: --long "$long_opts" \
-n $(basename $0) -- "$@") || \
{ echo -e "${CLR_BLD_RED}\nError: Getopt failed. Extra args\n${CLR_RST}"; showHelpAndExit; exit 1;}
eval set -- "$getopt_cmd"
while true; do
case "$1" in
-h|--help|h|help) showHelpAndExit;;
-c|--clean|c|clean) FLAG_CLEAN_BUILD=y;;
-i|--installclean|i|installclean) FLAG_INSTALLCLEAN_BUILD=y;;
-s|--repo-sync|s|repo-sync) FLAG_SYNC=y;;
-g|--gerrit-pick|g|gerrit-pick) GERRIT_TOPIC="$2"; shift;;
-r|--release|r|release) FLAG_PB_RELEASE=y;;
-u|--upload|u|upload) FLAG_PB_UPLOAD=y;;
-t|--build-type|t|build-type) BUILD_TYPE="$2"; shift;;
-j|--jobs|j|jobs) JOBS="$2"; shift;;
-k|--sign-keys|k|sign-keys) KEY_MAPPINGS="$2"; shift;;
-p|--pwfile|p|pwfile) PWFILE="$2"; shift;;
#-d|--delta|d|delta) DELTA_TARGET_FILES="$2"; shift;;
--) shift; break;;
esac
shift
done
# Mandatory argument
if [ $# -eq 0 ]; then
echo -e "${CLR_BLD_RED}Error: No device specified${CLR_RST}"
showHelpAndExit
fi
export DEVICE="$1"; shift
# Make sure we are running on 64-bit before carrying on with anything
ARCH=$(uname -m | sed 's/x86_//;s/i[3-6]86/32/')
if [ "$ARCH" != "64" ]; then
echo -e "${CLR_BLD_RED}error: unsupported arch (expected: 64, found: $ARCH)${CLR_RST}"
exit 1
fi
# Set up paths
cd $(dirname $0)
DIR_ROOT=$(pwd)
# Make sure everything looks sane so far
if [ ! -d "$DIR_ROOT/vendor/pb" ]; then
echo -e "${CLR_BLD_RED}error: insane root directory ($DIR_ROOT)${CLR_RST}"
exit 1
fi
# Initializationizing!
echo -e "${CLR_BLD_BLU}Setting up the environment${CLR_RST}"
echo -e ""
. build/envsetup.sh
# Use the thread count specified by user
CMD=""
if [ $JOBS ]; then
CMD+="-j$JOBS"
fi
# Pick the default thread count (allow overrides from the environment)
if [ -z "$JOBS" ]; then
if [ "$(uname -s)" = 'Darwin' ]; then
JOBS=$(sysctl -n machdep.cpu.core_count)
else
JOBS=$(cat /proc/cpuinfo | grep '^processor' | wc -l)
fi
fi
# Grab the build version
PIXELBUILDS_VERSION="$(cat $DIR_ROOT/vendor/pb/config/version.mk | grep 'PB_VERSION := *' | sed 's/.*= //') "
# Prep for a clean build, if requested so
if [ "$FLAG_CLEAN_BUILD" = 'y' ]; then
echo -e "${CLR_BLD_BLU}Cleaning output files left from old builds${CLR_RST}"
echo -e ""
m clobber "$CMD"
fi
# Sync up, if asked to
if [ "$FLAG_SYNC" = 'y' ]; then
echo -e "${CLR_BLD_BLU}Downloading the latest source files${CLR_RST}"
echo -e ""
repo sync -j6 -c --force-sync --no-clone-bundle --current-branch --no-tags
fi
# Perform repopick, if topic was specified
if [ $GERRIT_TOPIC ]; then
echo -e "${CLR_BLD_BLU}Picking changes from gerrit for topic $GERRIT_TOPIC${CLR_RST}"
echo -e ""
repopick -g ssh://review.pixelbuilds.org -q -t "$GERRIT_TOPIC"
fi
# Check the starting time (of the real build process)
TIME_START=$(date +%s.%N)
# Friendly logging to tell the user everything is working fine is always nice
echo -e "${CLR_BLD_GRN}Building PixelBuilds $PIXELBUILDS_VERSION for $DEVICE${CLR_RST}"
echo -e "${CLR_GRN}Start time: $(date)${CLR_RST}"
echo -e ""
# Lunch-time!
echo -e "${CLR_BLD_BLU}Lunching $DEVICE${CLR_RST} ${CLR_CYA}(Including dependencies sync)${CLR_RST}"
echo -e ""
lunch "aosp_$DEVICE-$BUILD_TYPE"
PIXELBUILDS_VERSION="$(get_build_var PIXELBUILDS_VERSION)"
checkExit
echo -e ""
# Perform installclean, if requested so
if [ "$FLAG_INSTALLCLEAN_BUILD" = 'y' ]; then
echo -e "${CLR_BLD_BLU}Cleaning compiled image files left from old builds${CLR_RST}"
echo -e ""
m installclean "$CMD"
fi
# Build away!
# Check if we do a release build. If so, build signed release package, else - make bacon
if [ "$FLAG_PB_RELEASE" ]; then
if [ -e "$RELEASE_HELPER_PATH" ]; then
echo -e "${CLR_BLD_BLU}Will now begin the release build${CLR_RST}"
source "$RELEASE_HELPER_PATH"
release
checkExit
if [ "$FLAG_PB_UPLOAD" ]; then
if [ -e "$UPLOAD_HELPER_PATH" ]; then
source "$UPLOAD_HELPER_PATH"
upload
checkExit
else
echo -e "${CLR_BLD_RED}warning: The upload flag is set, but the helper doesn't exist !${CLR_RST}"
fi
fi
else
echo -e "${CLR_BLD_RED}error: The release flag is set, but the helper doesn't exist !${CLR_RST}"
exit 1
fi
else
if [[ $KEY_MAPPINGS || $PWFILE ]]; then
echo -e "${CLR_BLD_RED}warning: It seems that you are trying to sign a build with specified keys."
echo -e "warning: This build script doesn't have any logic to accomodate that for"
echo -e "warning: non-release builds. Target files package will be made for you, but"
echo -e "warning: for the actual signing, these instructions once manually, once the"
echo -e "warning: package is done: https://source.android.com/docs/core/ota/sign_builds${CLR_RST}"
echo -e ""
echo -e "${CLR_BLD_BLU}Start making target files package${CLR_RST}"
echo -e ""
m otatools target-files-package
checkExit
echo -e "${CLR_BLD_BLU}Find your target files package here:"
echo -e "$OUT/obj/PACKAGING/target_files_intermediates/aosp_$DEVICE-target_files-eng.nobody.zip"
echo -e "Remember to follow https://source.android.com/docs/core/ota/sign_builds$ and good luck!${CLR_RST}"
echo -e ""
cat build/make/pb_ascii_logo
echo -e ""
if [ "$FLAG_PB_UPLOAD" ]; then
echo -e "${CLR_BLD_RED}warning: The upload flag is set? (jazz music stops)${CLR_RST}"
fi
else
echo -e "${CLR_BLD_BLU}Start making bacon${CLR_RST}"
echo -e ""
make bacon -j$JOBS
checkExit
if [ "$FLAG_PB_UPLOAD" ]; then
if [ -e "$UPLOAD_HELPER_PATH" ]; then
source "$UPLOAD_HELPER_PATH"
upload
checkExit
else
echo -e "${CLR_BLD_RED}warning: The upload flag is set, but the helper doesn't exist !${CLR_RST}"
fi
fi
fi
fi