瀏覽代碼

remove fbsimctl

Daniel Zlotin 7 年之前
父節點
當前提交
082a65d791
共有 4 個文件被更改,包括 0 次插入16 次删除
  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 查看文件

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

+ 0
- 7
CONTRIBUTING.md 查看文件

@@ -29,13 +29,6 @@ echo "Downloading Android SDK"
29 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 32
 ## Basics - Getting Started
40 33
 
41 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 查看文件

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

+ 0
- 3
scripts/test.e2e.ios.js 查看文件

@@ -34,9 +34,6 @@ function e2e() {
34 34
 }
35 35
 
36 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 37
   buildProjForDetox();
41 38
   e2e();
42 39
 }