From b22a66b19e0bd7e63c7df60a08743ff9c06db509 Mon Sep 17 00:00:00 2001 From: tom doron Date: Wed, 19 Apr 2023 10:19:13 -0700 Subject: [PATCH] skip testCompilationDiagnostics motivation: stable CI changes: disable testCompilationDiagnostics test since 5.8 has mismatched compiler --- Tests/SPMBuildCoreTests/PluginInvocationTests.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tests/SPMBuildCoreTests/PluginInvocationTests.swift b/Tests/SPMBuildCoreTests/PluginInvocationTests.swift index ff203fa0760..c9111ee18a7 100644 --- a/Tests/SPMBuildCoreTests/PluginInvocationTests.swift +++ b/Tests/SPMBuildCoreTests/PluginInvocationTests.swift @@ -229,6 +229,8 @@ class PluginInvocationTests: XCTestCase { } func testCompilationDiagnostics() throws { + throw XCTSkip("disabled on release/5.8 due to CI toolchain mismatch") + try testWithTemporaryDirectory { tmpPath in // Create a sample package with a library target and a plugin. let packageDir = tmpPath.appending(components: "MyPackage")