Skip to content

Commit

Permalink
Backport "Describe all PR tags for the CI" to LTS (#18992)
Browse files Browse the repository at this point in the history
Backports #17991 to the LTS branch.

PR submitted by the release tooling.
  • Loading branch information
Kordyjan authored Nov 21, 2023
2 parents 6bfe99b + 57c5334 commit 4225ac2
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions docs/_docs/contributing/sending-in-a-pr.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,28 @@ by looking in the `if` statements of jobs. For example you can see some
Below are commonly used ones:


|---------------------------|---------------------------------|
| `[skip ci]` | Skip the entire CI |
| `[skip community_build]` | Skip the entire community build |
| `[skip community_build_a]`| Skip the "a" community build |
| `[skip docs]` | Skip the scaladoc tests |
|---------------------------|----------------------------------------|
| `[skip ci]` | Skip the entire CI |
| `[skip community_build]` | Skip the entire community build |
| `[skip community_build_a]`| Skip the "a" community build |
| `[skip community_build_b]`| Skip the "b" community build |
| `[skip community_build_c]`| Skip the "c" community build |
| `[skip docs]` | Skip the scaladoc tests |
| `[skip test]` | Skip the unit tests |
| `[skip test_windows_fast]`| Skip the unit tests subset on Windows |
| `[skip mima]` | Skip the MiMa checks |
| `[skip test_sbt]` | Skip the SBT scripted tests |


#### Executes parts of the CI that are skipped on PRs
Depending on what your PR is addressing, sometimes it doesn't make sense to run
parts of the CI that usually ony runs on nightly builds.

|---------------------------|----------------------------------------------------|
| `[test_java8]` | Execute unit tests on Java 8 |
| `[test_windows_full]` | Execute unit tests on Windows |
| `[test_non_bootstrapped]` | Execute unit tests using non-bootstrapped compiler |


### 7: Create your PR!

Expand Down

0 comments on commit 4225ac2

Please sign in to comment.