-
Notifications
You must be signed in to change notification settings - Fork 49
/
XCHammer.yaml
41 lines (37 loc) · 1.32 KB
/
XCHammer.yaml
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
targets:
- "//ios-app:UITests"
- "//ios-app:UnitTests"
- "//ios-app:UnitTestsWithHost"
- "//ios-app:ios-app"
- "//ios-app:share-extension"
- "//ios-app:ios-app-bin"
projects:
"UrlGet":
paths:
- "Vendor/**"
- "ios-app/**"
xcconfigOverrides:
Debug: "ios-app/Diags.xcconfig"
Release: "ios-app/Diags.xcconfig"
# Example of overriding the default platform options
# Note, this is not set, we put sensible defaults in.
buildBazelPlatformOptions:
ios_x86_64:
- "--config=ios_x86_64"
ios_arm64:
- "--config=ios_arm64"
targetConfig:
"//ios-app:ios-app":
buildBazelTemplate: "UrlGetXcodeBuildScript.sh"
# Example of setting some options and "Make variable" replacements
# Note, that this is an example of an ability of tools/bazelwrapper
# and dynamically configuring Bazel options at runtime.
buildBazelOptions: "--action_env=X=Y --action_env=CLI_SDK=$(SDKROOT)"
schemeConfig:
Build:
preActions:
- script: "echo 'warning: pre'"
environmentVariables:
- variable: envVar
value: "$SRCROOT"
enabled: true