Skip to content

Commit

Permalink
Describe all PR tags for the CI (#17991)
Browse files Browse the repository at this point in the history
[skip community_build]
[skip test]
[skip test_windows_fast]
[skip mima]
[skip test_sbt]
  • Loading branch information
nicolasstucki authored Jun 17, 2023
2 parents 07ef815 + fe960c0 commit 889c208
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 |


#### Making sure every commit triggers a new run

Expand Down

0 comments on commit 889c208

Please sign in to comment.