Skip to content

Commit

Permalink
Merge branch 'main' into flaky-test/CertificateTests.testCertificateD…
Browse files Browse the repository at this point in the history
…escription
  • Loading branch information
Lukasa authored Dec 11, 2024
2 parents 6eaa3f4 + 62da4e6 commit b11db15
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,14 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
.package(path: "../swift-asn1"),
]
}

// --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
for target in package.targets {
if target.type != .plugin {
var settings = target.swiftSettings ?? []
// https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md
settings.append(.enableUpcomingFeature("MemberImportVisibility"))
target.swiftSettings = settings
}
}
// --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
1 change: 1 addition & 0 deletions Tests/X509Tests/ExtendedKeyUsageTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
//===----------------------------------------------------------------------===//

import XCTest
import SwiftASN1
import X509

final class ExtendedKeyUsageTests: XCTestCase {
Expand Down
1 change: 1 addition & 0 deletions Tests/X509Tests/ExtensionBuilderTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
//===----------------------------------------------------------------------===//

import XCTest
import SwiftASN1
import X509

final class ExtensionBuilderTests: XCTestCase {
Expand Down

0 comments on commit b11db15

Please sign in to comment.