Browse code

Move install_infra before execute build_wheels.sh

The pip_install_gr function in build_wheels.sh use requirements project.
So requirements project must exist before execute build_wheels.sh.
Then we moved install_infra function which install requirements project.

Change-Id: I8f80ecafff0f7e1942731379b70bccac338ea3b3
Closes-Bug: 1453012

Yuki Nishiwaki authored on 2015/05/08 16:29:55
Showing 1 changed files
... ...
@@ -705,6 +705,9 @@ source $TOP_DIR/tools/fixup_stuff.sh
705 705
 # Virtual Environment
706 706
 # -------------------
707 707
 
708
+# Install required infra support libraries
709
+install_infra
710
+
708 711
 # Pre-build some problematic wheels
709 712
 if [[ -n ${WHEELHOUSE:-} && ! -d ${WHEELHOUSE:-} ]]; then
710 713
     source $TOP_DIR/tools/build_wheels.sh
... ...
@@ -713,10 +716,6 @@ fi
713 713
 
714 714
 # Extras Pre-install
715 715
 # ------------------
716
-
717
-# Install required infra support libraries
718
-install_infra
719
-
720 716
 # Phase: pre-install
721 717
 run_phase stack pre-install
722 718