-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
143 lines (128 loc) · 4.16 KB
/
Package.swift
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
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "Storage",
platforms: [
.iOS(.v16),
.macOS(.v13),
],
products: [
.library(
name: "Server",
targets: ["Server"]),
.library(
name: "Storage",
targets: ["Storage"]),
],
dependencies: [
.package(name: "Event"),
.package(name: "Time"),
.package(name: "IPC"),
.package(name: "FileSystem"),
.package(name: "MessagePack"),
.package(name: "JSON"),
.package(name: "HTTP"),
.package(name: "Log"),
.package(name: "Test"),
],
targets: [
.target(
name: "Server",
dependencies: [
.target(name: "Storage"),
.product(name: "Event", package: "event"),
.product(name: "Time", package: "time"),
.product(name: "FileSystem", package: "filesystem"),
.product(name: "MessagePack", package: "messagepack"),
.product(name: "HTTP", package: "http"),
.product(name: "Log", package: "log"),
],
swiftSettings: swift6),
.target(
name: "Storage",
dependencies: [
.product(name: "IPC", package: "ipc"),
.product(name: "FileSystem", package: "filesystem"),
.product(name: "MessagePack", package: "messagepack"),
.product(name: "Time", package: "time"),
.product(name: "JSON", package: "json"),
],
swiftSettings: swift6),
]
)
let swift6: [SwiftSetting] = [
.enableUpcomingFeature("ConciseMagicFile"),
.enableUpcomingFeature("ForwardTrailingClosures"),
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("StrictConcurrency"),
.enableUpcomingFeature("ImplicitOpenExistentials"),
.enableUpcomingFeature("BareSlashRegexLiterals"),
]
// MARK: - tests
testTarget("Server") { test in
test("BinaryServer")
test("HTTPServer")
test("Server")
}
testTarget("Storage") { test in
test("Container")
test("SharedStorage")
test("Storage")
test("Persistence")
test("WAL")
}
func testTarget(_ target: String, task: ((String) -> Void) -> Void) {
task { test in addTest(target: target, name: test) }
}
func addTest(target: String, name: String) {
package.targets.append(
.executableTarget(
name: "Tests/\(target)/\(name)",
dependencies: [
.target(name: "Server"),
.target(name: "Storage"),
.product(name: "Event", package: "event"),
.product(name: "IPC", package: "ipc"),
.product(name: "Test", package: "test"),
],
path: "Tests/\(target)/\(name)",
swiftSettings: swift6))
}
// MARK: - custom package source
#if canImport(ObjectiveC)
import Darwin.C
#else
import Glibc
#endif
extension Package.Dependency {
enum Source: String {
case local, remote, github
static var `default`: Self { .github }
var baseUrl: String {
switch self {
case .local: return "../"
case .remote: return "https://swiftstack.io/"
case .github: return "https://github.com/swiftstack/"
}
}
func url(for name: String) -> String {
return self == .local
? baseUrl + name.lowercased()
: baseUrl + name.lowercased() + ".git"
}
}
static func package(name: String) -> Package.Dependency {
guard let pointer = getenv("SWIFTSTACK") else {
return .package(name: name, source: .default)
}
guard let source = Source(rawValue: String(cString: pointer)) else {
fatalError("Invalid source. Use local, remote or github")
}
return .package(name: name, source: source)
}
static func package(name: String, source: Source) -> Package.Dependency {
return source == .local
? .package(name: name, path: source.url(for: name))
: .package(url: source.url(for: name), branch: "dev")
}
}