Skip to content

Commit 27f8192

Browse files
committed
Attempt to work around CI misconfiguration by removing Complex Differentiable conformance.
1 parent c4f8886 commit 27f8192

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Sources/ComplexModule/Complex+Differentiable.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
//
1010
//===----------------------------------------------------------------------===//
1111

12-
#if canImport(_Differentiation)
12+
// STC April 2022: experimentally remove differentiable conformance to work
13+
// around CI config failure.
14+
#if canImport(_Differentiation) && !os(macOS)
1315
import _Differentiation
1416

1517
extension Complex: Differentiable

Tests/ComplexTests/DifferentiableTests.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
//
1010
//===----------------------------------------------------------------------===//
1111

12-
#if canImport(_Differentiation)
12+
// STC April 2022: experimentally remove differentiable conformance to work
13+
// around CI config failure.
14+
#if canImport(_Differentiation) && !os(macOS)
1315

1416
import XCTest
1517
import ComplexModule

0 commit comments

Comments
 (0)