Skip to content

Docs: Update to reflect new pipeline #8429

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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,11 @@ To run just the self-hosted test suite (faster turnaround times so it can be use
@swift-ci please test self hosted
```

To run the windows self-hosted suite, use:

```
@swift-ci please test self hosted windows
```

To run the swift toolchain test suite including SwiftPM use:

Expand Down
6 changes: 3 additions & 3 deletions Utilities/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Here are some steps the worked running on Windows.
cd C:\source
git clone https://github.com/swiftlang/swift-package-manager .
# Assign the PR ID to a variable
$PR_ID = "8210"
git fetch origin pull/$PR_ID/merge:ci_merge_$PR_ID
git checkout ci_merge_$PR_ID
$PR_ID = "8288"
git fetch origin pull/$PR_ID/merge
git checkout FETCH_HEAD
```
5. Run the CI pipeline script
```
Expand Down