From 11fc686e042ed1746f60d537e7fc40b7e4b6b492 Mon Sep 17 00:00:00 2001 From: Robert Widmann Date: Mon, 22 Aug 2022 11:59:37 -0700 Subject: [PATCH] Remove Docc Plugin Dependency Resolve a regression in the Windows build. We can restore this dependency once we've verified the correct way for all clients of this library to consume it. NOTE: This does not affect existing docc documentation. You can build that at your desk in Xcode with Product > Build Documentation. --- Package.swift | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Package.swift b/Package.swift index 4d96d95520d..ddf795d3de7 100644 --- a/Package.swift +++ b/Package.swift @@ -149,12 +149,3 @@ let package = Package( ), ] ) - -#if swift(>=5.6) -// If `SWIFTCI_USE_LOCAL_DEPS` is set, we are in a CI enviornment that might disallow -// internet access, so we can't load swift-docc-plugin. Simply don't load it in these -// environments because we don't build docc in CI at the moment. -if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil { - package.dependencies.append(.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")) -} -#endif