Skip to content

Commit

Permalink
#35 temporarily disable building macros on windows when testing
Browse files Browse the repository at this point in the history
  • Loading branch information
tdeleon committed Jan 2, 2024
1 parent 732782e commit d9bd30c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Sources/RelaxMacros/RelaxMacrosPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@
import SwiftCompilerPlugin
import SwiftSyntaxMacros

#if canImport(XCTest) && os(Windows) // temporarily disable when running tests on windows https://github.com/apple/swift/issues/69302
#else
@main
struct RelaxMacrosPlugin: CompilerPlugin {
let providingMacros: [Macro.Type] = [
APIServiceMacro.self
]
}
#endif

0 comments on commit d9bd30c

Please sign in to comment.