2007-10-04 08:57:41 -07:00
|
|
|
#!/bin/bash -e
|
2007-06-12 08:46:42 -07:00
|
|
|
# -*- Mode: Shell-script; tab-width: 4; indent-tabs-mode: nil; -*-
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Mozilla Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2006.
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
# Bob Clary <bob@bclary.com>
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
2008-04-03 09:22:29 -07:00
|
|
|
source $TEST_DIR/bin/library.sh
|
|
|
|
source $TEST_DIR/bin/set-build-env.sh $@
|
2007-06-12 08:46:42 -07:00
|
|
|
|
|
|
|
case $product in
|
2009-08-18 00:30:00 -07:00
|
|
|
firefox)
|
2008-07-10 13:37:21 -07:00
|
|
|
cd $BUILDTREE/mozilla
|
2007-06-12 08:46:42 -07:00
|
|
|
|
2009-08-18 00:29:59 -07:00
|
|
|
if ! $buildbash $bashlogin -c "export PATH=\"$BUILDPATH\"; cd $BUILDTREE/mozilla; make -f client.mk build" 2>&1; then
|
2007-06-12 08:46:42 -07:00
|
|
|
|
2007-09-28 08:31:05 -07:00
|
|
|
if [[ -z "$TEST_FORCE_CLOBBER_ON_ERROR" ]]; then
|
2008-02-06 12:00:53 -08:00
|
|
|
error "error during build" $LINENO
|
2007-09-28 08:31:05 -07:00
|
|
|
else
|
2008-02-06 12:00:53 -08:00
|
|
|
echo "error occured during build. attempting a clobber build" $LINENO
|
2009-08-18 00:29:59 -07:00
|
|
|
if ! $buildbash $bashlogin -c "export PATH=\"$BUILDPATH\"; cd $BUILDTREE/mozilla; make -f client.mk distclean" 2>&1; then
|
2008-02-06 12:00:53 -08:00
|
|
|
error "error during forced clobber" $LINENO
|
2007-09-28 08:31:05 -07:00
|
|
|
fi
|
2009-08-18 00:29:59 -07:00
|
|
|
if ! $buildbash $bashlogin -c "export PATH=\"$BUILDPATH\"; cd $BUILDTREE/mozilla; make -f client.mk build" 2>&1; then
|
2008-02-06 12:00:53 -08:00
|
|
|
error "error during forced build" $LINENO
|
2007-09-28 08:31:05 -07:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
2007-06-12 08:46:42 -07:00
|
|
|
|
2007-09-28 08:31:05 -07:00
|
|
|
case "$OSID" in
|
|
|
|
mac)
|
|
|
|
if [[ "$buildtype" == "debug" ]]; then
|
|
|
|
if [[ "$product" == "firefox" ]]; then
|
|
|
|
executablepath=$product-$buildtype/dist/FirefoxDebug.app/Contents/MacOS
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [[ "$product" == "firefox" ]]; then
|
|
|
|
executablepath=$product-$buildtype/dist/Firefox.app/Contents/MacOS
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
linux)
|
2008-04-03 09:22:29 -07:00
|
|
|
executablepath=$product-$buildtype/dist/bin
|
2008-11-05 13:59:23 -08:00
|
|
|
;;
|
2007-09-28 08:31:05 -07:00
|
|
|
esac
|
2007-06-12 08:46:42 -07:00
|
|
|
|
2009-08-18 00:30:00 -07:00
|
|
|
if [[ "$OSID" != "nt" ]]; then
|
2007-09-28 08:31:05 -07:00
|
|
|
#
|
|
|
|
# patch unix-like startup scripts to exec instead of
|
|
|
|
# forking new processes
|
|
|
|
#
|
|
|
|
executable=`get_executable $product $branch $executablepath`
|
2007-06-12 08:46:42 -07:00
|
|
|
|
2007-09-28 08:31:05 -07:00
|
|
|
executabledir=`dirname $executable`
|
|
|
|
|
|
|
|
# patch to use exec to prevent forked processes
|
|
|
|
cd "$executabledir"
|
|
|
|
if [ -e "$product" ]; then
|
|
|
|
echo "$SCRIPT: patching $product"
|
2008-04-03 09:22:29 -07:00
|
|
|
cp $TEST_DIR/bin/$product.diff .
|
2007-09-28 08:31:05 -07:00
|
|
|
patch -N -p0 < $product.diff
|
|
|
|
fi
|
|
|
|
if [ -e run-mozilla.sh ]; then
|
|
|
|
echo "$SCRIPT: patching run-mozilla.sh"
|
2008-04-03 09:22:29 -07:00
|
|
|
cp $TEST_DIR/bin/run-mozilla.diff .
|
2007-09-28 08:31:05 -07:00
|
|
|
patch -N -p0 < run-mozilla.diff
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
2007-06-12 08:46:42 -07:00
|
|
|
js)
|
2008-11-05 13:59:23 -08:00
|
|
|
|
2008-11-27 02:29:00 -08:00
|
|
|
if [[ -e "$BUILDTREE/mozilla/js/src/configure.in" ]]; then
|
2008-11-05 13:59:23 -08:00
|
|
|
|
|
|
|
# use the new fangled autoconf build environment for spidermonkey
|
|
|
|
|
|
|
|
# recreate the OBJ directories to match the old naming standards
|
|
|
|
TEST_JSDIR=${TEST_JSDIR:-$TEST_DIR/tests/mozilla.org/js}
|
|
|
|
source $TEST_JSDIR/config.sh
|
|
|
|
|
2009-01-14 07:16:17 -08:00
|
|
|
cd "$BUILDTREE/mozilla/js/src"
|
2009-08-18 00:29:59 -07:00
|
|
|
mkdir -p "$JS_OBJDIR"
|
|
|
|
|
|
|
|
# run autoconf when configure.in is newer than configure
|
|
|
|
if [[ configure.in -nt configure ]]; then
|
|
|
|
if [[ "$OSID" == "nt" ]]; then
|
|
|
|
AUTOCONF=autoconf-2.13
|
|
|
|
elif findprogram autoconf-2.13; then
|
|
|
|
AUTOCONF=autoconf-2.13
|
2009-08-18 00:29:59 -07:00
|
|
|
elif findprogram autoconf2.13; then
|
|
|
|
AUTOCONF=autoconf2.13
|
2009-08-18 00:29:59 -07:00
|
|
|
elif findprogram autoconf213; then
|
|
|
|
AUTOCONF=autoconf213
|
|
|
|
else
|
|
|
|
error "autoconf 2.13 not detected"
|
|
|
|
fi
|
2008-11-05 13:59:23 -08:00
|
|
|
|
2009-08-18 00:29:59 -07:00
|
|
|
if ! $buildbash $bashlogin -c "export PATH=\"$BUILDPATH\"; cd $BUILDTREE/mozilla/js/src; eval \"$AUTOCONF\";" 2>&1; then
|
|
|
|
error "during js/src autoconf" $LINENO
|
2008-11-05 13:59:23 -08:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2009-08-18 00:29:59 -07:00
|
|
|
|
2008-11-05 13:59:23 -08:00
|
|
|
# XXX: Todo
|
|
|
|
# This reproduces the limited approach which previously existed with Makefile.ref but
|
|
|
|
# does not provide the full functionality provided by the available configure options.
|
|
|
|
# Ideally, it would be good to use a mozconfig approach (if available) that would generate
|
|
|
|
# the necessary configure command line arguments. This would provide the generality to
|
|
|
|
# specify arbitrary configure options.
|
|
|
|
#
|
|
|
|
|
2009-08-18 00:29:59 -07:00
|
|
|
if [[ "configure" -nt "$JS_OBJDIR/Makefile" ]]; then
|
|
|
|
if [[ "$buildtype" == "debug" ]]; then
|
|
|
|
if ! $buildbash $bashlogin -c "export PATH=\"$BUILDPATH\"; cd $BUILDTREE/mozilla/js/src/$JS_OBJDIR; ../configure --prefix=$BUILDTREE/mozilla/js/src/$JS_OBJDIR --disable-optimize --enable-debug"; then
|
|
|
|
error "during js/src/$JS_OBJDIR configure" $LINENO
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if ! $buildbash $bashlogin -c "export PATH=\"$BUILDPATH\"; cd $BUILDTREE/mozilla/js/src/$JS_OBJDIR; ../configure --prefix=$BUILDTREE/mozilla/js/src/$JS_OBJDIR --enable-optimize --disable-debug"; then
|
|
|
|
error "during js/src/$JS_OBJDIR configure" $LINENO
|
|
|
|
fi
|
2008-11-05 13:59:23 -08:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2009-08-18 00:29:59 -07:00
|
|
|
if ! $buildbash $bashlogin -c "export PATH=\"$BUILDPATH\"; cd $BUILDTREE/mozilla/js/src/$JS_OBJDIR; make" 2>&1; then
|
2008-11-05 13:59:23 -08:00
|
|
|
error "during js/src build" $LINENO
|
|
|
|
fi
|
|
|
|
|
2009-08-18 00:29:59 -07:00
|
|
|
if ! $buildbash $bashlogin -c "export PATH=\"$BUILDPATH\"; cd $BUILDTREE/mozilla/js/src/$JS_OBJDIR; make install" 2>&1; then
|
2008-11-05 13:59:23 -08:00
|
|
|
error "during js/src install" $LINENO
|
|
|
|
fi
|
|
|
|
|
2008-11-27 02:29:00 -08:00
|
|
|
elif [[ -e "$BUILDTREE/mozilla/js/src/Makefile.ref" ]]; then
|
|
|
|
|
|
|
|
# use the old-style Makefile.ref build environment for spidermonkey
|
|
|
|
|
|
|
|
if [[ $buildtype == "debug" ]]; then
|
|
|
|
export JSBUILDOPT=
|
|
|
|
else
|
|
|
|
export JSBUILDOPT=BUILD_OPT=1
|
|
|
|
fi
|
|
|
|
|
2009-08-18 00:29:59 -07:00
|
|
|
if ! $buildbash $bashlogin -c "export PATH=\"$BUILDPATH\"; cd $BUILDTREE/mozilla/js/src; make -f Makefile.ref ${JSBUILDOPT} clean" 2>&1; then
|
2008-11-27 02:29:00 -08:00
|
|
|
error "during js/src clean" $LINENO
|
|
|
|
fi
|
|
|
|
|
2009-08-18 00:29:59 -07:00
|
|
|
if ! $buildbash $bashlogin -c "export PATH=\"$BUILDPATH\"; cd $BUILDTREE/mozilla/js/src; make -f Makefile.ref ${JSBUILDOPT}" 2>&1; then
|
2008-11-27 02:29:00 -08:00
|
|
|
error "during js/src build" $LINENO
|
|
|
|
fi
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
error "Neither Makefile.ref or autoconf builds available"
|
|
|
|
|
2008-11-05 13:59:23 -08:00
|
|
|
fi
|
|
|
|
;;
|
2007-06-12 08:46:42 -07:00
|
|
|
esac
|
|
|
|
|
|
|
|
|