File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
openapi/TestSwiftOrgClient/swiftorgClient Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -52,8 +52,20 @@ struct Tool {
52
52
work: { _ = try await client. listReleases ( ) . ok. body. json }
53
53
) ,
54
54
]
55
+ struct DevToolchainBranchPlatform : Hashable {
56
+ var branch : Components . Schemas . KnownSourceBranch
57
+ var platform : Components . Schemas . KnownPlatformIdentifier
58
+ }
59
+ let excluded : Set < DevToolchainBranchPlatform > = [
60
+ . init( branch: . _6_0, platform: . debian12) ,
61
+ . init( branch: . _6_0, platform: . fedora39) ,
62
+ . init( branch: . _6_0, platform: . ubuntu2404) ,
63
+ ]
55
64
for branch in Components . Schemas. KnownSourceBranch. allCases {
56
65
for platform in Components . Schemas. KnownPlatformIdentifier. allCases {
66
+ guard !excluded. contains ( . init( branch: branch, platform: platform) ) else {
67
+ continue
68
+ }
57
69
tests. append (
58
70
. init(
59
71
name: " listDevToolchains( \( branch. rawValue) , \( platform. rawValue) ) " ,
You can’t perform that action at this time.
0 commit comments