-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFastfile
63 lines (59 loc) · 1.58 KB
/
Fastfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
opt_out_usage
platform :ios do
desc "Build for testing"
lane :build do
scan(
scheme: "JavaScriptKit-iOS",
configuration: "Debug",
build_for_testing: true,
devices: ["iPhone 7"],
code_coverage: true,
derived_data_path: "DerivedData",
buildlog_path: "build",
output_directory: "build",
output_types: "junit"
)
end
desc "Test without building"
lane :test do
scan(
scheme: "JavaScriptKit-iOS",
configuration: "Debug",
test_without_building: true,
devices: ["iPhone 7"],
code_coverage: true,
derived_data_path: "DerivedData",
buildlog_path: "test",
output_directory: "test",
output_types: "junit"
)
end
end
platform :mac do
desc "Build for testing"
lane :build do
scan(
scheme: "JavaScriptKit-macOS",
configuration: "Debug",
build_for_testing: true,
code_coverage: true,
derived_data_path: "DerivedData",
buildlog_path: "build",
output_directory: "build",
output_types: "junit"
)
end
desc "Test without building"
lane :test do
scan(
scheme: "JavaScriptKit-macOS",
configuration: "Debug",
test_without_building: true,
code_coverage: true,
derived_data_path: "DerivedData",
buildlog_path: "test",
output_directory: "test",
output_types: "junit"
)
end
end