зеркало из https://github.com/mozilla/pjs.git
Bug 753168 - Create Marionette virtualenv in objdir. r=jgriffin DONTBUILD because NPOTB
This commit is contained in:
Родитель
111e09ba19
Коммит
fa5e947e16
|
@ -1,41 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# ***** BEGIN LICENSE BLOCK *****
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||||
#
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
# 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
|
|
||||||
# the Mozilla Foundation.
|
|
||||||
# Portions created by the Initial Developer are Copyright (C) 2012
|
|
||||||
# the Initial Developer. All Rights Reserved.
|
|
||||||
#
|
|
||||||
# Contributor(s):
|
|
||||||
# Malini Das (mdas@mozilla.com)
|
|
||||||
# Jonathan Griffin (jgriffin@mozilla.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 *****
|
|
||||||
|
|
||||||
PYTHON=$1
|
PYTHON=$1
|
||||||
|
|
||||||
|
@ -45,28 +11,42 @@ then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check if environment exists, if not, create a virtualenv:
|
# Determine the absolute path of our location.
|
||||||
if [ -d "marionette_venv" ]
|
MARIONETTE_HOME=`dirname $0`
|
||||||
|
cd $MARIONETTE_HOME
|
||||||
|
MARIONETTE_HOME=`dirname $PWD`
|
||||||
|
echo "Detected Marionette home in $MARIONETTE_HOME"
|
||||||
|
|
||||||
|
# If a GECKO_OBJDIR environemnt variable exists, we will create the Python
|
||||||
|
# virtual envirnoment there. Otherwise we createit in the PWD.
|
||||||
|
VENV_DIR="marionette_venv"
|
||||||
|
if [ -d $GECKO_OBJDIR ]
|
||||||
then
|
then
|
||||||
cd marionette_venv
|
VENV_DIR="$GECKO_OBJDIR/$VENV_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check if environment exists, if not, create a virtualenv:
|
||||||
|
if [ -d $VENV_DIR ]
|
||||||
|
then
|
||||||
|
echo "Using virtual environment in $VENV_DIR"
|
||||||
|
cd $VENV_DIR
|
||||||
. bin/activate
|
. bin/activate
|
||||||
else
|
else
|
||||||
echo "Creating marionette_venv folder in `pwd`"
|
echo "Creating a virtual environment in $VENV_DIR"
|
||||||
curl https://raw.github.com/pypa/virtualenv/develop/virtualenv.py | ${PYTHON} - marionette_venv
|
curl https://raw.github.com/pypa/virtualenv/develop/virtualenv.py | ${PYTHON} - $VENV_DIR
|
||||||
cd marionette_venv
|
cd $VENV_DIR
|
||||||
. bin/activate
|
. bin/activate
|
||||||
# set up mozbase
|
# set up mozbase
|
||||||
git clone git://github.com/mozilla/mozbase.git
|
git clone git://github.com/mozilla/mozbase.git
|
||||||
cd mozbase
|
cd mozbase
|
||||||
python setup_development.py
|
python setup_development.py
|
||||||
cd ..
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd ../..
|
|
||||||
# update the marionette_client
|
# update the marionette_client
|
||||||
|
cd $MARIONETTE_HOME
|
||||||
python setup.py develop
|
python setup.py develop
|
||||||
cd marionette
|
cd marionette
|
||||||
|
|
||||||
#pop off the python parameter
|
# pop off the python parameter
|
||||||
shift
|
shift
|
||||||
python runtests.py $@
|
python runtests.py $@
|
||||||
|
|
Загрузка…
Ссылка в новой задаче