Browse Source

remove fbsimctl

Daniel Zlotin 7 years ago
parent
commit
082a65d791
4 changed files with 0 additions and 16 deletions
  1. 0
    2
      .travis.yml
  2. 0
    7
      CONTRIBUTING.md
  3. 0
    4
      scripts/env/installFbSimCtl.sh
  4. 0
    3
      scripts/test.e2e.ios.js

+ 0
- 2
.travis.yml View File

27
   - source ./scripts/env/installNode.sh
27
   - source ./scripts/env/installNode.sh
28
         # android sdk:
28
         # android sdk:
29
   - source ./scripts/env/installAndroidSDK.sh
29
   - source ./scripts/env/installAndroidSDK.sh
30
-        # fbsimctl:
31
-  - source ./scripts/env/installFbSimCtl.sh
32
 
30
 
33
 script:
31
 script:
34
   - set -e
32
   - set -e

+ 0
- 7
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
-
39
 ## Basics - Getting Started
32
 ## Basics - Getting Started
40
 
33
 
41
 Got your environment set up? Go ahead and clone the repo. (Fork it first so you can open a PR when you're ready.)
34
 Got your environment set up? Go ahead and clone the repo. (Fork it first so you can open a PR when you're ready.)

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

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

+ 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
 }