|
10 | 10 | jobs:
|
11 | 11 | - job: JavaScriptRNPR
|
12 | 12 | displayName: JavaScript React Native PR
|
| 13 | + strategy: |
| 14 | + matrix: |
| 15 | + office: |
| 16 | + apply_office_patches: 'true' |
| 17 | + public: |
| 18 | + apply_office_patches: 'false' |
13 | 19 | pool:
|
14 | 20 | vmImage: macOS-10.14
|
15 | 21 | demands: ['xcode', 'sh', 'npm']
|
16 | 22 | steps:
|
17 | 23 | - template: templates/apple-job-javascript.yml
|
| 24 | + parameters: |
| 25 | + apply_office_patches: $(apply_office_patches) |
18 | 26 |
|
19 | 27 | - job: AppleRNPR
|
20 | 28 | displayName: Apple React Native PR
|
|
27 | 35 | xcode_destination: 'platform=iOS Simulator,OS=latest,name=iPhone 8'
|
28 | 36 | xcode_actions_debug: 'build test'
|
29 | 37 | xcode_actions_release: 'build'
|
| 38 | + apply_office_patches: 'false' |
30 | 39 | # Microsoft- We don't use tvOS, so don't bother maintaining the infra
|
31 | 40 | # tvos:
|
32 | 41 | # packager_platform: 'ios'
|
|
40 | 49 | xcode_destination: 'platform=macOS,arch=x86_64'
|
41 | 50 | xcode_actions_debug: 'build test'
|
42 | 51 | xcode_actions_release: 'build'
|
| 52 | + apply_office_patches: 'false' |
| 53 | + ios-office: |
| 54 | + packager_platform: 'ios' |
| 55 | + xcode_sdk: iphonesimulator |
| 56 | + xcode_scheme: 'RNTester' |
| 57 | + xcode_destination: 'platform=iOS Simulator,OS=latest,name=iPhone 8' |
| 58 | + xcode_actions_debug: 'build test' |
| 59 | + xcode_actions_release: 'build' |
| 60 | + apply_office_patches: 'true' |
| 61 | + macos-office: |
| 62 | + packager_platform: 'macos' |
| 63 | + xcode_sdk: macosx |
| 64 | + xcode_scheme: 'RNTester-macOS' |
| 65 | + xcode_destination: 'platform=macOS,arch=x86_64' |
| 66 | + xcode_actions_debug: 'build test' |
| 67 | + xcode_actions_release: 'build' |
| 68 | + apply_office_patches: 'true' |
43 | 69 | pool:
|
44 | 70 | vmImage: macOS-10.14
|
45 | 71 | demands: ['xcode', 'sh', 'npm']
|
|
55 | 81 | xcode_actions_debug: $(xcode_actions_debug)
|
56 | 82 | xcode_actions_release: $(xcode_actions_release)
|
57 | 83 | xcode_destination: $(xcode_destination)
|
| 84 | + apply_office_patches: $(apply_office_patches) |
0 commit comments