Skip to content

Commit 9ea8c76

Browse files
authored
Git-ignore .swiftpm/ directory (and schemes) (#1378)
* Git-ignore .swiftpm/ directory (and schemes) * wip * wip
1 parent 95cc28a commit 9ea8c76

File tree

8 files changed

+7
-154
lines changed

8 files changed

+7
-154
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.DS_Store
22
/.build
3+
/.swiftpm
34
/Packages
45
/*.xcodeproj
56
xcuserdata/

.spi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ builder:
88
- platform: tvos
99
scheme: ComposableArchitecture
1010
- platform: watchos
11-
scheme: ComposableArchitecture_watchOS
11+
scheme: ComposableArchitecture
1212
- documentation_targets: [ComposableArchitecture]

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 7 deletions
This file was deleted.

.swiftpm/xcode/xcshareddata/xcschemes/ComposableArchitecture_watchOS.xcscheme

Lines changed: 0 additions & 67 deletions
This file was deleted.

.swiftpm/xcode/xcshareddata/xcschemes/swift-composable-architecture-benchmarks.xcscheme

Lines changed: 0 additions & 78 deletions
This file was deleted.

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,20 @@ test-all: test-library test-examples
99

1010
test-library:
1111
xcodebuild test \
12+
-workspace ComposableArchitecture.xcworkspace \
1213
-scheme ComposableArchitecture \
1314
-destination platform="$(PLATFORM_IOS)"
1415
xcodebuild test \
16+
-workspace ComposableArchitecture.xcworkspace \
1517
-scheme ComposableArchitecture \
1618
-destination platform="$(PLATFORM_MACOS)"
1719
xcodebuild test \
20+
-workspace ComposableArchitecture.xcworkspace \
1821
-scheme ComposableArchitecture \
1922
-destination platform="$(PLATFORM_TVOS)"
2023
xcodebuild \
21-
-scheme ComposableArchitecture_watchOS \
24+
-workspace ComposableArchitecture.xcworkspace \
25+
-scheme ComposableArchitecture \
2226
-destination platform="$(PLATFORM_WATCHOS)"
2327

2428
DOC_WARNINGS := $(shell xcodebuild clean docbuild \

0 commit comments

Comments
 (0)