testing: don't install Mercurial 3.7 (bug 1333616); r?glob draft
authorGregory Szorc <gps@mozilla.com>
Mon, 20 Mar 2017 19:37:54 -0700
changeset 10632 51d6f88b209a412584ae15c8e4960040bf6a3519
parent 10631 194192d0392968cf0339af9f716af64c77a4fe39
child 10633 c0863ef272fcd5491238fccd75be55616dccf71f
push id1600
push userbmo:gps@mozilla.com
push dateMon, 03 Apr 2017 23:38:00 +0000
reviewersglob
bugs1333616
testing: don't install Mercurial 3.7 (bug 1333616); r?glob Our policy is to only support the last 4 releases. We're about to support 4.1, so stop installing 3.7. MozReview-Commit-ID: Cl5B2En0PYS
create-test-environment
--- a/create-test-environment
+++ b/create-test-environment
@@ -172,21 +172,21 @@ if [ ! -d venv/hg ]; then
   echo "Cloning Mercurial repository"
   hg clone https://www.mercurial-scm.org/repo/hg venv/hg
 fi
 
 hg -R venv/hg pull
 
 mercurials=`pwd`/venv/mercurials
 
-for old in 3.0 3.0.1 3.0.2 3.1 3.1.1 3.1.2 3.2 3.2.1 3.2.2 3.2.3 3.2.4 3.3 3.3.2 3.3.3 3.4 3.4.1 3.4.2 3.5 3.5.1 3.5.2 3.6 3.6.2 3.7.1; do
+for old in 3.0 3.0.1 3.0.2 3.1 3.1.1 3.1.2 3.2 3.2.1 3.2.2 3.2.3 3.2.4 3.3 3.3.2 3.3.3 3.4 3.4.1 3.4.2 3.5 3.5.1 3.5.2 3.6 3.6.2 3.7.1 3.7.3; do
   rm -rf $mercurials/$old
 done
 
-for v in 3.7.3 3.8.4 3.9.2; do
+for v in 3.8.4 3.9.2; do
   destdir=$mercurials/$v
   if [ ! -d $destdir ]; then
     cd venv/hg
     hg up $v
     # We don't care about support files, which only slow us down, so
     # install-bin is the only target we need.
     make install-bin PREFIX=$destdir
     hg --config extensions.purge= purge --all