Browse Source

removed fbsimctl, update to xcode9

Daniel Zlotin 6 years ago
parent
commit
280a12380b
5 changed files with 257 additions and 225 deletions
  1. 1
    4
      .travis.yml
  2. 0
    6
      docs/docs/CONTRIBUTING.md
  3. 256
    208
      package-lock.json
  4. 0
    4
      scripts/env/installFbSimCtl.sh
  5. 0
    3
      scripts/test.e2e.ios.js

+ 1
- 4
.travis.yml View File

1
 os: osx
1
 os: osx
2
-osx_image: xcode8.3
2
+osx_image: xcode9
3
 language: generic
3
 language: generic
4
 
4
 
5
 env:
5
 env:
6
   global:
6
   global:
7
-    - CODE_SIGNING_REQUIRED=NO
8
     - RCT_NO_LAUNCH_PACKAGER=true
7
     - RCT_NO_LAUNCH_PACKAGER=true
9
 
8
 
10
 branches:
9
 branches:
27
   - source ./scripts/env/installNode.sh
26
   - source ./scripts/env/installNode.sh
28
         # android sdk:
27
         # android sdk:
29
   - source ./scripts/env/installAndroidSDK.sh
28
   - source ./scripts/env/installAndroidSDK.sh
30
-        # fbsimctl:
31
-  - source ./scripts/env/installFbSimCtl.sh
32
 
29
 
33
 script:
30
 script:
34
   - set -e
31
   - set -e

+ 0
- 6
docs/docs/CONTRIBUTING.md View File

29
 curl --location https://dl.google.com/android/android-sdk_r24.4.1-macosx.zip | tar -x -z -C $HOME
29
 curl --location https://dl.google.com/android/android-sdk_r24.4.1-macosx.zip | tar -x -z -C $HOME
30
 ```
30
 ```
31
 
31
 
32
-* fbsimctl:
33
-
34
-```
35
-export CODE_SIGNING_REQUIRED=NO
36
-brew tap facebook/fb && brew install fbsimctl
37
-```
38
 
32
 
39
 ## Basics - Getting Started
33
 ## Basics - Getting Started
40
 
34
 

+ 256
- 208
package-lock.json
File diff suppressed because it is too large
View File


+ 0
- 4
scripts/env/installFbSimCtl.sh View File

1
-#!/bin/bash -e
2
-
3
-brew tap facebook/fb
4
-brew install fbsimctl --HEAD

+ 0
- 3
scripts/test.e2e.ios.js View File

34
 }
34
 }
35
 
35
 
36
 function run() {
36
 function run() {
37
-  if (!exec.which(`fbsimctl`)) {
38
-    throw new Error(`fbsimctl must be installed: "brew tap facebook/fb && brew install fbsimctl"`);
39
-  }
40
   buildProjForDetox();
37
   buildProjForDetox();
41
   e2e();
38
   e2e();
42
 }
39
 }