Thank you for considering contributing to the Swift-DocC Plugin.
Please know that everyone is welcome to contribute to Swift-DocC. Contributing doesn’t just mean submitting pull requests—there are many different ways for you to get involved, including answering questions on the Swift Forums, reporting or screening bugs, and writing documentation.
No matter how you want to get involved, we ask that you first learn what’s expected of anyone who participates in the project by reading the Swift Community Guidelines as well as our Code of Conduct.
This document focuses on how to contribute code and documentation to this repository.
By submitting a pull request, you represent that you have the right to license your
contribution to Apple and the community, and agree by submitting the patch that your
contributions are licensed under the Apache 2.0 license (see LICENSE.txt
).
The Swift-DocC plugin is an open source project and we encourage contributions from the community.
Before contributing code or documentation to the Swift-DocC plugin, we encourage you to first open a GitHub issue. This will allow us to provide feedback on the proposed change. However, this is not a requirement. If your contribution is small in scope, feel free to open a PR without first creating an issue.
All changes to the Swift-DocC plugin source must go through the PR review process before
being merged into the main
branch.
See the Code Contribution Guidelines below for
more details.
The Swift-DocC plugin is a SwiftPM command plugin package. If you're new to Swift package manager, the documentation here provides an explanation of how to get started and the software you'll need installed.
Note that Swift 5.6 is required in order to run the plugin. Development snapshots that include Swift 5.6 can be found on Swift.org.
-
Checkout this repository using:
git clone [email protected]:swiftlang/swift-docc-plugin.git
-
Navigate to the root of your cloned repository with:
cd swift-docc-plugin
-
Create a new branch off of
main
for your change using:git checkout -b branch-name-here
Note that
main
(the repository's default branch) will always hold the most recent approved changes. In most cases, you should branch off ofmain
when starting your work and open a PR againstmain
when you're ready to merge that work. -
Run the Swift-DocC plugin from the command line by running:
swift package generate-documentation
If you want to debug a change, you can use your local development version of
the Swift-DocC plugin by specifying a local path in your project's Package.swift
:
let package = Package(
// name, platforms, products, etc.
dependencies: [
// other dependencies
.package(path: "path/to/local/swift-docc-plugin"),
],
targets: [
// targets
]
)
By default, Swift-DocC plugin will run docc
from your Swift toolchain.
However, if you're working on Swift-DocC, and want to test your in-development docc
with
Swift-DocC plugin, you can set the DOCC_EXEC
environment variable before
invoking the plugin:
export DOCC_EXEC=path/to/swift-docc/.build/debug/docc
swift package generate-documentation
-
Do your best to keep the git history easy to understand.
-
Use informative commit titles and descriptions.
- Include a brief summary of changes as the first line.
- Describe everything that was added, removed, or changed, and why.
-
All changes must go through the pull request review process.
-
Follow the Swift API Design guidelines.
When you're ready to have your change reviewed, please make sure you've completed the following requirements:
-
Add tests to cover any new functionality or to prevent regressions of a bug fix.
-
Run the
/bin/test
script and confirm that the test suite passes. (See Testing Swift-DocC.) -
Add source code documentation to all added or modified APIs that explains the new behavior.
When opening a pull request, please make sure to fill out the pull request template and complete all tasks mentioned there.
Your PR should mention the number of the GitHub issue your work is addressing.
Most PRs should be against the main
branch. If your change is intended
for a specific release, you should also create a separate branch
that cherry-picks your commit onto the associated release branch.
All PRs will need approval from someone on the core team (someone with write access to the repository) before being merged.
All PRs must pass the required continuous integration tests as well. If you have commit access, you can run the required tests by commenting the following on your PR:
@swift-ci Please test
If you do not have commit access, please ask one of the code owners to trigger them for you. For more details on Swift-DocC's continuous integration, see the Continuous Integration section below.
The Swift-DocC plugin is committed to maintaining a high level of code quality. Before opening a pull request, we ask that you:
-
Run the full test suite and confirm that it passes.
-
Write new tests to cover any changes you made.
The test suite can be run with the provided test
script
by navigating to the root of the repository and running the following:
bin/test
By running tests locally with the test
script you will be best prepared for
automated testing in CI as well.
The Swift-DocC plugin maintains two test suites. Whenever possible, new code should be added
to the SwiftDocCPluginUtilities
library instead of directly to a plugin. This allows the logic to be
unit tested within SwiftDocCPluginUtilitiesTests
.
Integration tests can be added to the IntegrationTests
sub-package that is a part of this repo.
This allows for writing end-to-end tests that invoke both the Swift Package Manager and Swift-DocC
to ensure the plugin is functioning as expected.
Today, the Swift-DocC plugin supports both macOS and Linux. While most Swift APIs are cross-platform, there are some minor differences. Because of this, all PRs will be automatically tested in both macOS and Linux environments.
macOS users can test that their changes are compatible with Linux by running the test suite in a Docker environment that simulates Swift on Linux.
-
Install Docker Desktop for Mac.
-
Run the following command from the root of this repository to build the Swift-DocC Docker image:
docker build -t swift-docc-plugin:latest .
-
Run the following command to run the test suite:
docker run -v `pwd`:/swift-docc-plugin swift-docc-plugin sh -c "cd /swift-docc-plugin && ./bin/test"
Swift-DocC plugin uses swift-ci infrastructure for its continuous integration testing. The tests can be triggered on pull-requests if you have commit access. If you do not have commit access, please ask one of the code owners to trigger them for you.
-
Test: Run the project's unit tests on macOS and Linux, along with a selection of compatibility suite tests on macOS by commenting the following:
@swift-ci Please test
Platform specific instructions:
-
Run the project's unit tests on macOS, along with a selection of compatibility suite tests by commenting the following:
@swift-ci Please test macOS platform
-
Run the project's unit tests on Linux by commenting the following:
@swift-ci Please test Linux platform
-