Commit 01ce3d05 authored by YM-RD-AP01\ymadmin's avatar YM-RD-AP01\ymadmin

20180082: Job [Deploy_Hi365_IOS_SIT] configuration updated

Change performed by ³¯¾_¶§
parent 62492330
......@@ -45,9 +45,9 @@
<description></description>
<choices class="java.util.Arrays$ArrayList">
<a class="string-array">
<string>sit</string>
<string>uat</string>
<string>prod</string>
<string>SIT</string>
<string>UAT</string>
<string>Release</string>
</a>
</choices>
</hudson.model.ChoiceParameterDefinition>
......@@ -89,17 +89,21 @@
<builders>
<hudson.tasks.Shell>
<command># Choose build dart by environment
if [ $BUILD_FLUTTER_ENV == &quot;sit&quot; ]
if [ $BUILD_ENV == &quot;SIT&quot; ]
then
default_doc=&quot;main_sit.dart&quot;
elif [ $BUILD_FLUTTER_ENV == &quot;uat&quot; ]
export_method=&quot;ad-hoc&quot;
elif [ $BUILD_ENV == &quot;UAT&quot; ]
then
default_doc=&quot;main_uat.dart&quot;
elif [ $BUILD_FLUTTER_ENV == &quot;prod&quot; ]
export_method=&quot;ad-hoc&quot;
elif [ $BUILD_ENV == &quot;Release&quot; ]
then
default_doc=&quot;main_prod.dart&quot;
export_method=&quot;app-store&quot;
else
default_doc=&quot;main_sit.dart&quot;
default_doc=&quot;main_dev.dart&quot;
export_method=&quot;development&quot;
fi
# Set the variable
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment