-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move files when using package add-target
on single target package
#8413
Conversation
Currently `swift package init --type executable` in a folder called `Example` creates a project with the following structure: ``` ./Example/Sources ./Example/Sources/main.swift ./Example/Package.swift ``` Following this up with a `swift package add-target Foo` produces a package that no longer builds. It now has the structure: ``` ./Example/Sources ./Example/Sources/main.swift ./Example/Sources/Foo/Foo.swift ./Example/Package.swift ``` Packages with multiple targets cannot have code directly in `./Sources`, and the user gets the error: `Source files for target Example should be located under 'Sources/Example'` To work around this in the AddTarget command we can check if a package is structured as a single target package with sources directly in `./Sources` and move these files into a new folder located at `./Sources/Example`. This allows the project to build after the new target has been added. Issue: swiftlang#8410
Co-authored-by: Max Desiatov <[email protected]>
Co-authored-by: Max Desiatov <[email protected]>
@swift-ci please test |
@swift-ci please test windows |
} | ||
} | ||
|
||
func testAddTargetWithoutManifestThrows() async throws { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion (possibly-blocking): Although the current tests are great in validating the file system structure, can we add a test that validate the Package can still be built, and maybe even ensure the tests pass, if we run swift package add-target foo
on an package containing a single source?
// Check if the package has a single target with that target's sources located | ||
// directly in `./Sources`. If so, move the sources into a folder named after | ||
// the target before adding a new target. | ||
package static func moveSingleTargetSources( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion (possibly-blocking): can we write automated test that validate this function in isolation, where we can test various code paths?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've added some unit tests to cover off this function
@swift-ci test |
@swift-ci please test windows |
@swift-ci please test self hosted windows |
@swift-ci test windows |
Motivation:
Currently running
swift package init --type executable
in a folder calledExample
creates a project with the following structure:Following this up with a
swift package add-target Foo
produces a package that no longer builds. It now has the structure:Packages with multiple targets cannot have code directly in
./Sources
, and the user gets the error:Source files for target Example should be located under 'Sources/Example'
Modifications:
To work around this in the AddTarget command we can check if a package is structured as a single target package with sources directly in
./Sources
and move these files into a new folder located at./Sources/Example
.Result:
This allows the project to build after the new target has been added.
Issue: #8410