File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,21 @@ feature. We use the 'fork and pull' model described there.
8383
8484Please make pull requests against the ` master ` branch.
8585
86+ Compiling all of ` make check ` can take a while. When testing your pull request,
87+ consider using one of the more specialized ` make ` targets to cut down on the
88+ amount of time you have to wait. You need to have built the compiler at least
89+ once before running these will work, but that’s only one full build rather than
90+ one each time.
91+
92+ $ make -j8 rustc-stage1 && make check-stage1
93+
94+ is one such example, which builds just ` rustc ` , and then runs the tests. If
95+ you’re adding something to the standard library, try
96+
97+ $ make -j8 check-stage1-std NO_REBUILD=1
98+
99+ This will not rebuild the compiler, but will run the tests.
100+
86101All pull requests are reviewed by another person. We have a bot,
87102@rust-highfive , that will automatically assign a random person to review your
88103request.
You can’t perform that action at this time.
0 commit comments