Skip to content

Commit

Permalink
Remove watch build from package
Browse files Browse the repository at this point in the history
  • Loading branch information
ffried committed Sep 25, 2020
1 parent e69fb85 commit 99809ce
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 25 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/master-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,15 +106,6 @@ jobs:
- platform=tvOS Simulator,OS=latest,name=Apple TV 4K
action: [ test ]
use-xcpretty: [ true, false ]
include:
- destination: platform=watchOS Simulator,OS=latest,name=Apple Watch Series 5 - 44mm
skip-testing: ''
action: build
use-xcpretty: true
- destination: platform=watchOS Simulator,OS=latest,name=Apple Watch Series 5 - 44mm
skip-testing: ''
action: build
use-xcpretty: false
steps:
- run: sudo xcode-select -s /Applications/Xcode_12.app/Contents/Developer
- uses: actions/checkout@v2
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/pull-request-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,6 @@ jobs:
- platform=tvOS Simulator,OS=latest,name=Apple TV 4K
action: [ test ]
use-xcpretty: [ true, false ]
include:
- destination: platform=watchOS Simulator,OS=latest,name=Apple Watch Series 5 - 44mm
skip-testing: ''
action: build
use-xcpretty: true
- destination: platform=watchOS Simulator,OS=latest,name=Apple Watch Series 5 - 44mm
skip-testing: ''
action: build
use-xcpretty: false
steps:
- run: sudo xcode-select -s /Applications/Xcode_12.app/Contents/Developer
- name: Install dependencies
Expand Down
4 changes: 1 addition & 3 deletions __test__/TestPackage/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ let package = Package(
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "TestPackage",
dependencies: []),
.target(name: "TestPackage"),
.testTarget(
name: "TestPackageTests",
dependencies: ["TestPackage"]),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,4 @@ final class TestPackageTests: XCTestCase {
// results.
XCTAssertEqual(TestPackage().text, "Hello, World!")
}

static var allTests = [
("testExample", testExample),
]
}

0 comments on commit 99809ce

Please sign in to comment.