forked from KeeForge/KeeForge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
210 lines (206 loc) · 7.16 KB
/
Copy pathproject.yml
File metadata and controls
210 lines (206 loc) · 7.16 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
name: KeeForge
options:
bundleIdPrefix: com.keevault
deploymentTarget:
iOS: "17.0"
xcodeVersion: "16.0"
minimumXcodeGenVersion: "2.38"
configFiles:
Debug: BuildConfig.xcconfig
Release: BuildConfig.xcconfig
settings:
base:
SWIFT_VERSION: "6.0"
IPHONEOS_DEPLOYMENT_TARGET: "17.0"
SWIFT_STRICT_CONCURRENCY: complete
CODE_SIGN_STYLE: Automatic
ENABLE_USER_SCRIPT_SANDBOXING: "YES"
packages:
Argon2Swift:
url: https://github.com/tmthecoder/Argon2Swift.git
revision: 53543623fefe68461b7eeea03d7f96677c2fd76d
SwiftyDropbox:
url: https://github.com/dropbox/SwiftyDropbox.git
from: 10.0.7
MSAL:
url: https://github.com/AzureAD/microsoft-authentication-library-for-objc.git
from: 1.7.0
targets:
KeeForge:
type: application
platform: iOS
settings:
base:
INFOPLIST_FILE: KeeForge/Info.plist
PRODUCT_BUNDLE_IDENTIFIER: com.keevault.app
TARGETED_DEVICE_FAMILY: "1,2"
ASSETCATALOG_COMPILER_APPICON_NAME: KeeForge
CODE_SIGN_STYLE: Automatic
CODE_SIGN_ENTITLEMENTS: KeeForge/KeeForge.entitlements
PRODUCT_NAME: KeeForge
PRODUCT_MODULE_NAME: KeeForge
MARKETING_VERSION: "1.10.0"
CURRENT_PROJECT_VERSION: "1"
CLOUD_KEYCHAIN_ACCESS_GROUP: $(AppIdentifierPrefix)com.keevault.sharedkeychain
GENERATE_INFOPLIST_FILE: false
SWIFT_EMIT_LOC_STRINGS: "YES"
dependencies:
- target: KeeForgeAutoFill
embed: true
codeSign: true
- package: Argon2Swift
- package: SwiftyDropbox
- package: MSAL
sources:
- path: KeeForge/App
excludes: ["README.md"]
- path: KeeForge/Models
excludes: ["README.md"]
- path: KeeForge/Services
excludes: ["README.md", "**/README.md"]
- path: KeeForge/ViewModels
excludes: ["README.md"]
- path: KeeForge/Views
excludes: ["README.md"]
- path: KeeForge/Extensions
excludes: ["README.md"]
- path: KeeForge/Resources
excludes: ["README.md"]
- path: KeeForge.icon
buildPhase: resources
KeeForgeAutoFill:
type: app-extension
platform: iOS
settings:
base:
INFOPLIST_FILE: AutoFillExtension/Info.plist
PRODUCT_BUNDLE_IDENTIFIER: com.keevault.app.autofill
CODE_SIGN_STYLE: Automatic
CODE_SIGN_ENTITLEMENTS: AutoFillExtension/AutoFillExtension.entitlements
MARKETING_VERSION: "1.10.0"
CURRENT_PROJECT_VERSION: "1"
GENERATE_INFOPLIST_FILE: false
dependencies:
- package: Argon2Swift
sources:
- path: AutoFillExtension
excludes: ["README.md"]
- path: KeeForge/Models
excludes: ["README.md"]
- path: KeeForge/Services/Security/BiometricService.swift
- path: KeeForge/Services/Security/SecureRandom.swift
- path: KeeForge/Services/Persistence/DocumentPickerService.swift
- path: KeeForge/Services/AutoFill/AutoFillSaveCoordinator.swift
- path: KeeForge/Services/Persistence/DatabaseListStore.swift
- path: KeeForge/Services/Security/KeychainService.swift
- path: KeeForge/Services/AppSupport/SettingsService.swift
- path: KeeForge/Services/Persistence/SharedVaultStore.swift
- path: KeeForge/Services/AutoFill/CredentialMatcher.swift
- path: KeeForge/Services/AutoFill/CredentialIdentityStoreManager.swift
- path: KeeForge/Services/AppSupport/FaviconService.swift
- path: KeeForge/Services/Persistence/CoordinatedFileReader.swift
- path: KeeForge/Services/Persistence/KeyFileProcessor.swift
- path: KeeForge/Services/Persistence/LocalDatabaseSaver.swift
- path: KeeForge/Services/Security/PasskeyCrypto.swift
- path: KeeForge/Services/Cloud/PendingUploadQueue.swift
- path: KeeForge/Services/AutoFill/PasswordGenerator.swift
- path: KeeForge/Services/AutoFill/PasswordStrengthEstimator.swift
- path: KeeForge/Views/PasswordDisplay.swift
- path: KeeForge/Views/PasswordInputRow.swift
- path: KeeForge/Services/Persistence/SecurityScopedBookmarkManager.swift
- path: KeeForge/Services/Persistence/SyncedFolderDetector.swift
KeeForgeUITests:
type: bundle.ui-testing
platform: iOS
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.keevault.app.uitests
GENERATE_INFOPLIST_FILE: true
TEST_TARGET_NAME: KeeForge
dependencies:
- target: KeeForge
sources:
- path: KeeForgeUITests
excludes: ["README.md"]
- path: TestFixtures/test.kdbx
buildPhase: resources
- path: TestFixtures/demo.kdbx
buildPhase: resources
- path: TestFixtures/demo-keyfile.kdbx
buildPhase: resources
- path: TestFixtures/demo-keyfile.key
buildPhase: resources
- path: TestFixtures/compatibility/attachments.kdbx
buildPhase: resources
KeeForgeTests:
type: bundle.unit-test
platform: iOS
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.keevault.app.tests
GENERATE_INFOPLIST_FILE: true
TEST_TARGET_NAME: KeeForge
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/KeeForge.app/KeeForge"
dependencies:
- target: KeeForge
sources:
- path: KeeForgeTests
excludes: ["README.md"]
- path: TestFixtures/test.kdbx
buildPhase: resources
- path: TestFixtures/demo.kdbx
buildPhase: resources
- path: TestFixtures/demo-keyfile.kdbx
buildPhase: resources
- path: TestFixtures/round-trip/unknown-elements.kdbx
buildPhase: resources
- path: TestFixtures/compatibility/aes-baseline.kdbx
buildPhase: resources
- path: TestFixtures/compatibility/password-keyfile.kdbx
buildPhase: resources
- path: TestFixtures/compatibility/password-keyfile.key
buildPhase: resources
- path: TestFixtures/compatibility/unknown-rich.kdbx
buildPhase: resources
- path: TestFixtures/compatibility/kdbx41-public-custom-data.kdbx
buildPhase: resources
- path: TestFixtures/compatibility/legacy-kdbx31.kdbx
buildPhase: resources
- path: TestFixtures/compatibility/attachments.kdbx
buildPhase: resources
- path: TestFixtures/test-v3-backup.kdbx
buildPhase: resources
- path: TestFixtures/demo-keyfile.key
buildPhase: resources
- path: TestFixtures/test-binary.key
buildPhase: resources
- path: TestFixtures/test-hex.key
buildPhase: resources
- path: TestFixtures/test-v1.key
buildPhase: resources
- path: TestFixtures/test-v2.keyx
buildPhase: resources
- path: TestFixtures/test-arbitrary.key
buildPhase: resources
schemes:
KeeForge:
build:
preActions:
- script: |
"${SRCROOT}/ci_scripts/prepare_build_config.sh" "${SRCROOT}"
settingsTarget: KeeForge
targets:
KeeForge: all
KeeForgeUITests: [test]
run:
config: Debug
test:
config: Debug
gatherCoverageData: false
targets:
- name: KeeForgeTests
parallelizable: false
randomExecutionOrder: true
- name: KeeForgeUITests
parallelizable: false
randomExecutionOrder: false