File tree 1 file changed +15
-0
lines changed
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.
83
83
84
84
Please make pull requests against the ` master ` branch.
85
85
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
+
86
101
All pull requests are reviewed by another person. We have a bot,
87
102
@rust-highfive , that will automatically assign a random person to review your
88
103
request.
You can’t perform that action at this time.
0 commit comments