We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b083a1a commit b56af82Copy full SHA for b56af82
src/commands/setup_macos_executor.yml
@@ -28,6 +28,20 @@ steps:
28
touch .watchmanconfig
29
node -v
30
31
+ # Ideally we would do this using Homebrew above, but we need a specific revision due to this issue:
32
+ # https://github.com/facebook/FBSimulatorControl/pull/508
33
+ - run:
34
+ name: Install FBSimulatorControl
35
+ command: |
36
+ cd /tmp
37
+ git clone https://github.com/facebook/FBSimulatorControl.git FBSimulatorControl
38
+ cd FBSimulatorControl
39
+ git checkout 778f9825cb82aabac82f1ed474f1dba1e0276211
40
+ ./build.sh fbsimctl build >/dev/null
41
+ cp -r build/Build/Products/Debug/* /usr/local/bin
42
+ which fbsimctl
43
+ fbsimctl
44
+
45
- save_cache:
46
paths:
47
- /usr/local/Homebrew
0 commit comments