Browse Source

try reproduce travis bug 2

Daniel Zlotin 7 years ago
parent
commit
c44f47a215
2 changed files with 4 additions and 4 deletions
  1. 1
    1
      .travis.yml
  2. 3
    3
      scripts/travis.sh

+ 1
- 1
.travis.yml View File

30
   - curl -o- -L https://yarnpkg.com/install.sh | bash
30
   - curl -o- -L https://yarnpkg.com/install.sh | bash
31
   - yarn config set cache-folder $YARN_CACHE
31
   - yarn config set cache-folder $YARN_CACHE
32
   # android sdk
32
   # android sdk
33
-  - ./scripts/installAndroidSDK.sh
33
+  # - ./scripts/installAndroidSDK.sh
34
   # android emulator
34
   # android emulator
35
   #- echo yes | android update sdk --no-ui --all --filter "sys-img-armeabi-v7a-google_apis-25"
35
   #- echo yes | android update sdk --no-ui --all --filter "sys-img-armeabi-v7a-google_apis-25"
36
   #- echo no | android create avd --name AVD -t android-25 --abi google_apis/armeabi-v7a
36
   #- echo no | android create avd --name AVD -t android-25 --abi google_apis/armeabi-v7a

+ 3
- 3
scripts/travis.sh View File

20
 }
20
 }
21
 
21
 
22
 run_f "yarn install"
22
 run_f "yarn install"
23
-run_f "yarn run test-js"
24
-run_f "yarn run test-unit-android"
23
+# run_f "yarn run test-js"
24
+# run_f "yarn run test-unit-android"
25
 run_f "yarn run test-unit-ios -- release"
25
 run_f "yarn run test-unit-ios -- release"
26
-run_f "yarn run test-e2e-android"
26
+# run_f "yarn run test-e2e-android"
27
 run_f "yarn run test-e2e-ios -- release"
27
 run_f "yarn run test-e2e-ios -- release"
28
 run_f "yarn run release"
28
 run_f "yarn run release"