-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
102 lines (96 loc) · 3.17 KB
/
Copy pathproject.yml
File metadata and controls
102 lines (96 loc) · 3.17 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
name: ContainerUI
options:
bundleIdPrefix: dev.kylemclaren
deploymentTarget:
macOS: "14.0"
createIntermediateGroups: true
groupSortPosition: top
generateEmptyDirectories: true
packages:
Sparkle:
url: https://github.com/sparkle-project/Sparkle
exactVersion: 2.9.4
settings:
base:
# Swift 5 language mode (async/await + Observation still fully available).
# Avoids Swift 6 strict data-race errors; bump to "6.0" once you've built locally.
SWIFT_VERSION: "5.0"
MARKETING_VERSION: "0.1.0"
CURRENT_PROJECT_VERSION: "1"
# Fill in your Apple Developer Team ID to enable automatic signing,
# or sign manually in Xcode. Leaving this empty signs with "Sign to Run Locally".
DEVELOPMENT_TEAM: ""
CODE_SIGN_STYLE: Automatic
ENABLE_HARDENED_RUNTIME: YES
GCC_TREAT_WARNINGS_AS_ERRORS: NO
SWIFT_TREAT_WARNINGS_AS_ERRORS: NO
targets:
ContainerUI:
type: application
platform: macOS
deploymentTarget: "14.0"
sources:
- App
- Core
- Features
- DesignSystem
- path: Resources/Assets.xcassets
dependencies:
- package: Sparkle
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: dev.kylemclaren.ContainerUI
PRODUCT_NAME: ContainerUI
CODE_SIGN_ENTITLEMENTS: Resources/ContainerUI.entitlements
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME: AccentColor
COMBINE_HIDPI_IMAGES: YES
ENABLE_PREVIEWS: YES
LD_RUNPATH_SEARCH_PATHS:
- "$(inherited)"
- "@executable_path/../Frameworks"
info:
path: Resources/Info.plist
properties:
CFBundleDisplayName: ContainerUI
CFBundleName: ContainerUI
CFBundleShortVersionString: $(MARKETING_VERSION)
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
LSMinimumSystemVersion: $(MACOSX_DEPLOYMENT_TARGET)
LSApplicationCategoryType: public.app-category.developer-tools
NSHumanReadableCopyright: "A SwiftUI GUI for Apple's container tool."
# Menu-bar/dock app (not an agent).
LSUIElement: false
# Sparkle auto-update — must live here: xcodegen regenerates Info.plist
# from these properties, dropping any keys added to the file directly.
SUFeedURL: "https://github.com/kylemclaren/container-ui/releases/latest/download/appcast.xml"
SUPublicEDKey: "U9EQSg3p7eLXu3zAJ2aQXtklhZPGZAkjSF3Eka4vI2w="
SUEnableAutomaticChecks: true
SUScheduledCheckInterval: 86400
ContainerUITests:
type: bundle.unit-test
platform: macOS
deploymentTarget: "14.0"
# Host-less logic tests: the bundle compiles the UI-independent `Core`
# sources directly (rather than @testable-importing the app), so
# `xcodebuild test` runs fast and headless with no GUI host.
sources:
- Core
- Tests
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: dev.kylemclaren.ContainerUITests
GENERATE_INFOPLIST_FILE: YES
schemes:
ContainerUI:
build:
targets:
ContainerUI: all
run:
config: Debug
test:
config: Debug
targets:
- ContainerUITests
archive:
config: Release