File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
test/configure/__snapshots__ Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ jobs:
198
198
fi
199
199
- name : Install Pods
200
200
run : |
201
- pod install --project-directory=${{ steps.configure.outputs.project-directory }}
201
+ USE_FLIPPER=0 pod install --project-directory=${{ steps.configure.outputs.project-directory }}
202
202
working-directory : template-example
203
203
- name : Build
204
204
run : |
Original file line number Diff line number Diff line change @@ -576,7 +576,7 @@ const getConfig = (() => {
576
576
Podfile : join (
577
577
`require_relative '${ testAppRelPath } /test_app'` ,
578
578
"" ,
579
- "use_flipper!" ,
579
+ "use_flipper! false if ENV['USE_FLIPPER'] == '0' " ,
580
580
"" ,
581
581
`workspace '${ name } .xcworkspace'` ,
582
582
"" ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Object {
12
12
},
13
13
" Podfile" : " require_relative '../test_app'
14
14
15
- use_flipper !
15
+ use_flipper ! false if ENV [ ' USE_FLIPPER ' ] == ' 0 '
16
16
17
17
workspace ' Test.xcworkspace'
18
18
@@ -133,7 +133,7 @@ applyTestAppSettings(settings)
133
133
} ,
134
134
"ios/Podfile": "require_relative '../../test_app'
135
135
136
- use_flipper!
136
+ use_flipper! false if ENV['USE_FLIPPER'] == '0'
137
137
138
138
workspace 'Test.xcworkspace'
139
139
@@ -303,7 +303,7 @@ Object {
303
303
},
304
304
" ios/Podfile" : " require_relative '../../test_app'
305
305
306
- use_flipper !
306
+ use_flipper ! false if ENV [ ' USE_FLIPPER ' ] == ' 0 '
307
307
308
308
workspace ' Test.xcworkspace'
309
309
@@ -435,7 +435,7 @@ applyTestAppSettings(settings)
435
435
} ,
436
436
"ios/Podfile": "require_relative '../../test_app'
437
437
438
- use_flipper!
438
+ use_flipper! false if ENV['USE_FLIPPER'] == '0'
439
439
440
440
workspace 'Test.xcworkspace'
441
441
@@ -586,7 +586,7 @@ applyTestAppSettings(settings)
586
586
} ,
587
587
"ios/Podfile": "require_relative '../../test_app'
588
588
589
- use_flipper!
589
+ use_flipper! false if ENV['USE_FLIPPER'] == '0'
590
590
591
591
workspace 'Test.xcworkspace'
592
592
You can’t perform that action at this time.
0 commit comments