Skip to content

Commit

Permalink
Merge pull request #13 from JosephDuffy/vision
Browse files Browse the repository at this point in the history
Support building on visionOS
  • Loading branch information
JosephDuffy authored May 27, 2024
2 parents 3c52ae8 + f9668f0 commit 6193ed2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ jobs:
fail-fast: false
matrix:
xcode: ["15.1", "15.3"]
platform: ["macOS", "iOS", "tvOS", "watchOS", "macCatalyst"]
platform: ["macOS", "iOS", "tvOS", "watchOS", "macCatalyst", "visionOS"]
exclude:
# There are no visionOS simulators available on GitHub Actions using Xcode 15.1
- xcode: "15.1"
platform: "visionOS"

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Mintfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
josephduffy/xcutils@v0.2.3
josephduffy/xcutils@v0.3.0
tuist/xcbeautify@1.0.1
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ let package = Package(
.tvOS(.v13),
.watchOS(.v6),
.macCatalyst(.v13),
.visionOS(.v1),
],
products: [
.library(
Expand All @@ -34,7 +35,7 @@ let package = Package(
.targetItem(
name: "HashableMacroFoundation",
condition: .when(
platforms: [.macOS, .iOS, .tvOS, .watchOS, .macCatalyst]
platforms: [.macOS, .iOS, .tvOS, .watchOS, .macCatalyst, .visionOS]
)
),
"HashableMacroMacros",
Expand Down

0 comments on commit 6193ed2

Please sign in to comment.