• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# Entry point to build the Eclipse plugins for the build server.
3#
4# Input parameters:
5# $1: *Mandatory* destination directory. Must already exist. Cannot contain spaces.
6# $2: Optional build number. If present, will be appended to the date qualifier.
7#     The build number cannot contain spaces *nor* periods (dashes are ok.)
8# -z: Optional, prevents the final zip and leaves the udate-site directory intact.
9# -i: Optional, if present, the Google internal update site will be built. Otherwise,
10#     the external site will be built
11# Workflow:
12# - make dx, ddms, ping
13# - create symlinks (for eclipse code reorg, for ddms, ping)
14# - call the actual builder script from Brett
15# - zip resulting stuff and move to $DEST
16# Note: currently wrap around existing shell script, reuse most of it,
17# eventually both might merge as needed.
18
19set -e  # Fail this script as soon as a command fails -- fail early, fail fast
20
21PROG_DIR=$(dirname "$0")
22
23DEST_DIR=""
24BUILD_NUMBER=""
25CREATE_ZIP="1"
26INTERNAL_BUILD=""
27
28function get_params() {
29  # parse input parameters
30  while [ $# -gt 0 ]; do
31    if [ "$1" == "-z" ]; then
32      CREATE_ZIP=""
33    elif [ "$1" == "-i" ]; then
34      INTERNAL_BUILD="-i"
35    elif [ "$1" != "" ] && [ -z "$DEST_DIR" ]; then
36      DEST_DIR="$1"
37    elif [ "$1" != "" ] && [ -z "$BUILD_NUMBER" ]; then
38      BUILD_NUMBER="$1"
39    fi
40    shift
41  done
42}
43
44function die() {
45  echo "Error:" $*
46  echo "Aborting"
47  exit 1
48}
49
50function check_params() {
51  # This needs to run from the top android directory
52  # Automatically CD to the top android directory, whatever its name
53  D="$PROG_DIR"
54  cd "$D/../../../" && echo "Switched to directory $PWD"
55
56  # The current Eclipse build has some Linux dependency in its config files
57  [ `uname` == "Linux" -o `uname` == "Darwin" ] || die "This must run from a Linux or Mac OSX box."
58
59  # Check dest dir exists
60  [ -n "$DEST_DIR" ] || die "Usage: $0 <destination-directory> [build-number]"
61  [ -d "$DEST_DIR" ] || die "Destination directory $DEST_DIR must exist."
62
63  # Qualifier is "v" followed by date/time in YYYYMMDDHHSS format and the optional
64  # build number.
65  DATE=`date +v%Y%m%d%H%M`
66  QUALIFIER="$DATE"
67  [ -n "$BUILD_NUMBER" ] && QUALIFIER="${QUALIFIER}-${BUILD_NUMBER}"
68
69  return 0
70}
71
72function build_plugin() {
73  sdk/eclipse/scripts/create_all_symlinks.sh
74
75  # Compute the final directory name and remove any leftovers from previous
76  # runs if any.
77  BUILD_PREFIX="android-eclipse"
78  if [ "$INTERNAL_BUILD" ]; then
79    # append 'eng' signifier to end of archive name to denote internal build
80    BUILD_PREFIX="${BUILD_PREFIX}-eng"
81  fi
82
83  # exclude date from build-zip name so it can be auto-calculated by continuous
84  # test process unless there's no build number, in which case the date is
85  # still used (useful for testing)
86  ZIP_NAME="${BUILD_PREFIX}-${BUILD_NUMBER:-$DATE}.zip"
87  [ -d "$DEST_DIR/$BUILD_PREFIX" ] || rm -rfv "$DEST_DIR/$BUILD_PREFIX"
88
89  # Perform the Eclipse build and move the result in $DEST_DIR/android-build
90  sdk/eclipse/scripts/build_plugins.sh $QUALIFIER $INTERNAL_BUILD -d "$DEST_DIR" -a "$BUILD_PREFIX"
91
92  # Cleanup
93  [ -d "$QUALIFIER" ] && rm -rfv "$QUALIFIER"
94
95  if [ "$CREATE_ZIP" ]; then
96    # The result is a full update-site under $DEST_DIR/BUILD_PREFIX
97    # Zip it and remove the directory.
98    echo "**** Package in $DEST_DIR"
99    [ -d "$DEST_DIR/$BUILD_PREFIX" ] || \
100      die "Build failed to produce $DEST_DIR/$BUILD_PREFIX"
101    cd "$DEST_DIR"
102    [ -f "$ZIP_NAME" ] && rm -rfv "$ZIP_NAME"
103    cd "$BUILD_PREFIX"
104    zip -9r "../$ZIP_NAME" *
105    cd .. # back to $DEST_DIR
106    rm -rfv "$BUILD_PREFIX"  # removes the directory, not the zip
107    echo "ZIP of Update site available at $DEST_DIR/${ZIP_NAME}"
108  else
109    echo "Update site available in $DEST_DIR/$BUILD_PREFIX"
110  fi
111}
112
113function build_adt_ide() {
114  if [[ -z $INTERNAL_BUILD ]]; then
115    # This needs to run from the top android directory
116    D="$PROG_DIR"
117    cd "$D/../../../" && echo "Switched to directory $PWD"
118    for sc in */*/*/build_ide*.sh; do
119      if [[ -x $sc ]]; then
120        echo "RUNNING $sc from $PWD"
121        $sc "$DEST_DIR" "$QUALIFIER" "${BUILD_NUMBER:-$QUALIFIER}"
122      else
123        echo "WARNING: skipping non-exec $sc script"
124      fi
125    done
126  fi
127}
128
129get_params "$@"
130check_params
131( build_plugin )
132( build_adt_ide )
133
134