Skip to content

Commit

Permalink
fix tvOS?
Browse files Browse the repository at this point in the history
  • Loading branch information
lawrence-forooghian committed Aug 5, 2024
1 parent 8ff26a4 commit 6a4e73b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/BuildTool/BuildTool.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ enum Platform: String, CaseIterable {
case .iOS:
.lookup(destinationPredicate: .init(runtime: "iOS-17-5", deviceType: "iPhone-15"))
case .tvOS:
.lookup(destinationPredicate: .init(runtime: "tvOS-17-5", deviceType: "Apple TV"))
// GitHub documentation says that the runner has a device with tvOS 17.5 (https://github.com/actions/runner-images/blob/2a4bc14da46f1f8e358aa902a69edb9bef135472/images/macos/macos-14-arm64-Readme.md#installed-simulators) but it doesn’t seem to
.lookup(destinationPredicate: .init(runtime: "tvOS-17-4", deviceType: "Apple TV"))
}
}
}
Expand Down

0 comments on commit 6a4e73b

Please sign in to comment.