Skip to content
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

Merged
merged 4 commits into from
Mar 31, 2025

Conversation

plemarquand
Copy link
Contributor

@plemarquand plemarquand commented Mar 25, 2025

Motivation:

Currently running 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'

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

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
@plemarquand
Copy link
Contributor Author

@swift-ci please test

@plemarquand
Copy link
Contributor Author

@swift-ci please test windows

}
}

func testAddTargetWithoutManifestThrows() async throws {
Copy link
Contributor

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(
Copy link
Contributor

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?

Copy link
Contributor Author

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

@plemarquand
Copy link
Contributor Author

@swift-ci test

@plemarquand
Copy link
Contributor Author

@swift-ci please test windows

2 similar comments
@plemarquand
Copy link
Contributor Author

@swift-ci please test windows

@plemarquand
Copy link
Contributor Author

@swift-ci please test windows

@bkhouri
Copy link
Contributor

bkhouri commented Mar 29, 2025

@swift-ci please test self hosted windows

@plemarquand
Copy link
Contributor Author

@swift-ci test windows

@plemarquand plemarquand merged commit adc2535 into swiftlang:main Mar 31, 2025
6 checks passed
@plemarquand plemarquand deleted the add-target-fix branch March 31, 2025 17:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants