Bug fix for local CI runs

There are three possible runtime enviroments supported by CI scripts:
1. Arm Jenkins
2. OpenCI
3. Local CI

Local CI, in many cases, resembles Arm Jenkins enviroment. This patch
fixes various conditions that effect choice of resources such as paths
of FVP Models etc.

For example, local CI run is picking up the Base_AEM model path as
/opt/model/Base_RevC_AEMv8A_pkg/models/Linux64_GCC-6.4
instead of
/arm/warehouse/SysGen/Models/11.12/38/models/Linux64_GCC-6.4/

Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
Change-Id: Ic1a51ad15868ff9023144ff393e6f964151fcea0
diff --git a/model/base-aemv8a.sh b/model/base-aemv8a.sh
index 2c4de1d..fca5119 100644
--- a/model/base-aemv8a.sh
+++ b/model/base-aemv8a.sh
@@ -6,7 +6,7 @@
 #
 
 # Use revc model
-if  is_arm_jenkins_env; then
+if  is_arm_jenkins_env || upon "$local_ci"; then
         set_model_path "$warehouse/SysGen/Models/$model_version/$model_build/models/$model_flavour/FVP_Base_RevC-2xAEMv8A"
         default_var sve_plugin_path "$warehouse/SysGen/PVModelLib/$model_version/$model_build/external/plugins/$model_flavour/sve2-HEAD/ScalableVectorExtension.so"
 else