From accc45665b6a23c81e337a59d2f33c923a6268c1 Mon Sep 17 00:00:00 2001 From: Yim Lee Date: Wed, 10 May 2023 15:35:49 -0700 Subject: [PATCH] CI setup Motivation: swift-openapi-runtime is private, so it can't be accessed anonymously and CI fails. Modifications: - Change to use SSH git URL for swift-openapi-runtime - Set up SSH access in CI temporarily until swift-openapi-runtime becomes public. --- Package.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 6964423f..7d210697 100644 --- a/Package.swift +++ b/Package.swift @@ -61,7 +61,9 @@ let package = Package( ), // Tests-only: Runtime library linked by generated code - .package(url: "https://github.com/apple/swift-openapi-runtime", .upToNextMinor(from: "0.1.0")), + // FIXME: swift-openapi-runtime is private, so we can't access it anonymously yet + //.package(url: "https://github.com/apple/swift-openapi-runtime", .upToNextMinor(from: "0.1.0")), + .package(url: "git@github.com:apple/swift-openapi-runtime.git", .upToNextMinor(from: "0.1.0")), // Build and preview docs .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),