-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.yml
39 lines (39 loc) · 932 Bytes
/
project.yml
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
name: Nappa
options:
bundleIdPrefix: xyz.tavares
packages:
Quick:
url: https://github.com/Quick/Quick
from: 2.2.0
Nimble:
url: https://github.com/Quick/Nimble
exactVersion: 8.0.2
targets:
Nappa:
type: framework
platform: [iOS, tvOS, macOS, watchOS]
deploymentTarget: "9.0"
settings:
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES: YES
MACOSX_DEPLOYMENT_TARGET: 10.13
WATCHOS_DEPLOYMENT_TARGET: 2.0
sources: Sources/Nappa
scheme:
testTargets:
- NappaTests_${platform}
NappaTests:
type: bundle.unit-test
platform: [iOS, tvOS, watchOS]
sources: Tests/NappaTests
dependencies:
- target: Nappa_${platform}
- package: Quick
- package: Nimble
NappaTests_macOS:
type: bundle.unit-test
platform: macOS
sources: Tests/NappaTests
dependencies:
- target: Nappa_macOS
- package: Quick
- package: Nimble