You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice that this introduces an error when running `swift test`:
```
$ swift test
Building for debugging...
/Users/gio/Developer/a8c/tracks-apple-pod/Sources/Model/ObjC/Common/Core Data/TracksContextManager.m:24:24: error: use of undeclared identifier 'SWIFTPM_MODULE_BUNDLE'
NSBundle *bundle = SWIFTPM_MODULE_BUNDLE;
^
1 error generated.
[0/6] Compiling TracksContextManager.m
error: fatalError
```
This is a known Swift Package Manager issue. See:
- swiftlang/swift-package-manager#4500
- https://forums.swift.org/t/5-3-resources-support-not-working-on-with-swift-test/40381
However, `bundle exec fastlane test`, which uses `xcodebuild` under the
hood, works.
Given our workflow is based on Xcode locally and Fastlane in CI, the
regression seems acceptable.
The reason I'm keen to upgrade to 5.5 is that it's the required tooling
version to integrate Buildkite's Test Analytics. See
https://github.com/buildkite/test-collector-swift/blob/v0.1.0/Package.swift#L1
0 commit comments