-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
25 lines (24 loc) · 892 Bytes
/
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
// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "XcodeSelectiveTestingPlugin",
products: [
.plugin(name: "XcodeSelectiveTestingPlugin", targets: ["XcodeSelectiveTestingPlugin"])
],
dependencies: [],
targets: [
.plugin(
name: "XcodeSelectiveTestingPlugin",
capability: .command(
intent: .custom(verb: "xcode-selective-test", description: "Run xcode-selective-test"),
permissions: []
),
dependencies: ["xcode-selective-test"]
),
.binaryTarget(
name: "xcode-selective-test",
url: "https://github.com/mikeger/XcodeSelectiveTesting/releases/download/0.10.5/xcode-selective-test.artifactbundle.zip",
checksum: "f58e4fbc6bb59f64fe8c34f3a1d090b7e41ff36ca6b1959cd45b1b9dc6a84c2f"
)
]
)