Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add swift version file to record the Swift toolchain to use #8411

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

cmcgee1024
Copy link
Member

When working with SwiftPM, there is a particular version that development is
expected to use so that all of the compilers, standard libraries, test frameworks,
etc. are expected to be working. The .swift-version file establishes a standard
way to record this information. Also, there is tooling available through swiftly
to use that information to automatically use the correct toolchain in any git commit
to set the developer's toolchain when they run and test SwiftPM functions at desk.

Create the .swift-version file and set it to the current expected toolchain version
for development: 6.0.3. Add documentation regarding this file in the contributor guide.
Link to swiftly so that developers can install the tool, and enhance their development
workflows.

@cmcgee1024
Copy link
Member Author

@swift-ci please test

@cmcgee1024
Copy link
Member Author

@swift-ci please test

@@ -0,0 +1 @@
6.0.3
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file is missing a trailing newline. Additionally, could it have a comment on the first or second line pointing to relevant documentation for discoverability?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file should be dead simple, able to be cat'ed as part of scripts/commands to easily get the desired toolchain without any further processing.

10. While creating your PR, make sure to follow the PR Template providing information about the motivation and highlighting the changes.
11. Reviewers are going to be automatically added to your PR
12. Pull requests will be merged by the maintainers after it passes CI testing and receives approval from one or more reviewers. Merge timing may be impacted by release schedule considerations.
5. If a particular version of the Swift toolchain is needed then update the `.swift-version` file to that version (or use `swiftly use` to update it).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we should encourage contributors to bump the version requirement. It would misalign with the version used on CI then.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that this would be a great discussion point in any PR that attempts to use features of a newer toolchain and pinpoint exactly what code changes require the newer version. Updating the swift version file reveals that, and someday the hope is that the CI would attempt to use that toolchain to verify the PR.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From my opinion, the CIs pipelines should use the version of the toolchain specified in the .swift-version.

We should work on getting our current pipelines updated to install said version if a .swift-version files exists on the branch/PR being "built"

11. Reviewers are going to be automatically added to your PR
12. Pull requests will be merged by the maintainers after it passes CI testing and receives approval from one or more reviewers. Merge timing may be impacted by release schedule considerations.
5. If a particular version of the Swift toolchain is needed then update the `.swift-version` file to that version (or use `swiftly use` to update it).
6. Try to keep your changes (when possible) below 200 lines of code.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
6. Try to keep your changes (when possible) below 200 lines of code.
6. Try to keep your changes (when possible) below 200 lines of code. Split your change into multiple PRs when the diff exceeds this limit.

Copy link
Member Author

@cmcgee1024 cmcgee1024 Mar 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm hoping to keep this PR scoped to just the changes needed for tracking swift toolchain version. The only reason this PR changes this line is to renumber the ordered list to insert. I would have preferred to use the GitHub markdown auto-numbering feature.

Further editing of the contribution guide can be tracked in another PR.

5. If a particular version of the Swift toolchain is needed then update the `.swift-version` file to that version (or use `swiftly use` to update it).
6. Try to keep your changes (when possible) below 200 lines of code.
7. We use [SwiftFormat](https://github.com/nicklockwood/SwiftFormat) to enforce code style. Please install and run SwiftFormat before submitting your PR, ideally isolating formatting changes only to code changed for the original goal of the PR. This will keep the PR diff smaller.
8. Commit (include the Radar link or GitHub issue id in the commit message if possible and a description your changes). Try to have only 1 commit in your PR (but, of course, if you add changes that can be helpful to be kept aside from the previous commit, make a new commit for them).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The last sentence here is not relevant, people can have as many commits (including merge commits) in their PRs as they please since we squash before merging anyway.

Suggested change
8. Commit (include the Radar link or GitHub issue id in the commit message if possible and a description your changes). Try to have only 1 commit in your PR (but, of course, if you add changes that can be helpful to be kept aside from the previous commit, make a new commit for them).
8. Commit (include the Radar link or GitHub issue id in the commit message if possible and a description your changes).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment as above. Can we focus on the tracking of the swift toolchain version in this PR? I don't mind reviewing further refinements to the contribution guide separately.

Comment on lines 328 to 330
2. Clone a working copy of your fork
3. Create a new branch
4. Make your code changes
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's update punctuation in each point for consistency.

Suggested change
2. Clone a working copy of your fork
3. Create a new branch
4. Make your code changes
2. Clone a working copy of your fork.
3. Create a new branch.
4. Make your code changes.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment as above.

Comment on lines +335 to +338
9. Push the commit / branch to your fork
10. Make a PR from your fork / branch to `apple: main`
11. While creating your PR, make sure to follow the PR Template providing information about the motivation and highlighting the changes.
12. Reviewers are going to be automatically added to your PR
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: punctuation consistency

Suggested change
9. Push the commit / branch to your fork
10. Make a PR from your fork / branch to `apple: main`
11. While creating your PR, make sure to follow the PR Template providing information about the motivation and highlighting the changes.
12. Reviewers are going to be automatically added to your PR
9. Push the commit / branch to your fork.
10. Make a PR from your fork / branch to `apple:main`.
11. While creating your PR, make sure to follow the PR Template providing information about the motivation and highlighting the changes.
12. Reviewers are going to be automatically added to your PR.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See above comments.

Copy link
Contributor

@bkhouri bkhouri left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like the changes, but my primary concern is the self-hosted pipelines does not currently enforce the .swift-version file.

10. While creating your PR, make sure to follow the PR Template providing information about the motivation and highlighting the changes.
11. Reviewers are going to be automatically added to your PR
12. Pull requests will be merged by the maintainers after it passes CI testing and receives approval from one or more reviewers. Merge timing may be impacted by release schedule considerations.
5. If a particular version of the Swift toolchain is needed then update the `.swift-version` file to that version (or use `swiftly use` to update it).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From my opinion, the CIs pipelines should use the version of the toolchain specified in the .swift-version.

We should work on getting our current pipelines updated to install said version if a .swift-version files exists on the branch/PR being "built"

Copy link
Contributor

@bkhouri bkhouri left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like the changes, but my primary concern is the self-hosted pipelines does not currently enforce the .swift-version file.

@cmcgee1024
Copy link
Member Author

@swift-ci test Windows

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants