You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by mo...@apache.org on 2020/03/27 03:41:38 UTC

[incubator-weex] branch master updated: [iOS] fix ci build script

This is an automated email from the ASF dual-hosted git repository.

moshen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-weex.git


The following commit(s) were added to refs/heads/master by this push:
     new 43a9c09  [iOS] fix ci build script
     new 494e1d2  Merge pull request #3178 from jianhan-he/master
43a9c09 is described below

commit 43a9c09d8cd65d510a0971b42d7ce32f27c44a19
Author: linghe.lh <li...@alibaba-inc.com>
AuthorDate: Fri Mar 27 10:35:01 2020 +0800

    [iOS] fix ci build script
---
 .travis.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 9490dae..ebeb24e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -121,7 +121,7 @@ install:
         nvm install 12.6.0  
 
         git submodule update --init --remote
-        cd weex-playground/ios
+        cd weex-playground/ios && bash update_podfile_for_travisci.sh
         cd ../../ && npm install
         cd weex-playground/ios && bundle install && pod install --repo-update
         cd ../../
@@ -168,10 +168,10 @@ script:
       "ios" )
         if npm run danger -- ci --dangerfile ./dangerfile-ios.js | grep -q "hasIosFile" ; then
           # build WeexSDK and run WeexSDKTests
-          #xcodebuild -quiet -project ios/sdk/WeexSDK.xcodeproj test -scheme WeexSDKTests CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -destination "platform=iOS Simulator,name=iPhone 6" || exit 1
+          xcodebuild -quiet -project ios/sdk/WeexSDK.xcodeproj test -scheme WeexSDKTests CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -destination "platform=iOS Simulator,name=iPhone 6" || exit 1
           # build WeexDemo and run WeexDemo test
           cd weex-playground/ios && mkdir tmp && mv * tmp;cd tmp
-          #xcodebuild -quiet -workspace WeexDemo.xcworkspace test -scheme WeexDemo CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -destination "platform=iOS Simulator,name=iPhone 6" || exit 1
+          xcodebuild -quiet -workspace WeexDemo.xcworkspace test -scheme WeexDemo CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -destination "platform=iOS Simulator,name=iPhone 6" || exit 1
         fi
         ;;
     esac