QA/TDAI/RegressionRangeInstall: Difference between revisions

From MozillaWiki
< QA‎ | TDAI
Jump to navigation Jump to search
(Link to latest docs since this page out of date)
 
(4 intermediate revisions by one other user not shown)
Line 1: Line 1:
=Windows=
These instructions have now been replaced by:
* Download [http://github.com/downloads/harthur/mozregression/mozregression.zip regression.zip] and unzip in the location of your choice (like the Desktop).
http://mozilla.github.com/mozregression/
 
* [http://ftp.mozilla.org/pub/mozilla.org/mozilla/libraries/win32/MozillaBuildSetup-1.4.exe Install Mozilla Build]. This is a command line utility.
 
* Run Mozilla Build. this can usually be done by running <tt>C:\mozilla-build\start-l10n.bat</tt>
 
* navigate to the unzipped regression folder from this command line, for example: <pre>cd Desktop/regression</pre>
 
* execute the install script from this directory by running the command:<pre>./install-windows.sh</pre>
 
* you can now run the regression range finder with the command line:<pre>python regression.py -g 2009-12-01 -b 2010-01-16</pre>
 
=Ubuntu=
* Download [http://github.com/downloads/harthur/mozregression/mozregression.zip mozregression] and unzip in the location of your choice (like the Desktop).
 
* Run these commands:
<pre>
sudo apt-get install python-setuptools
sudo easy_install mozmill
sudo easy_install BeautifulSoup
sudo easy_install httplib2
</pre>
 
* you can now run the regression range finder with the command line:
<pre>python regression.py -g 2009-12-01 -b 2010-01-16</pre>
 
=Mac=
* Download [http://github.com/downloads/harthur/mozregression/mozregression.zip mozregression.zip] and unzip in the location of your choice (like the Desktop).
 
* Run these commands in the terminal:
<pre>
curl -O http://peak.telecommunity.com/dist/ez_setup.py
python ez_setup.py
sudo easy_install mozmill
sudo easy_install BeautifulSoup
sudo easy_install httplib2
</pre>
 
* <tt>cd</tt> into the unzipped <tt>regression</tt> folder and run the regression range finder with the command line:
<pre>python regression.py -g 2009-12-01 -b 2010-01-16</pre>

Latest revision as of 10:51, 21 May 2012

These instructions have now been replaced by: http://mozilla.github.com/mozregression/