summaryrefslogtreecommitdiff
path: root/static/build.html
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2021-12-24 18:07:37 -0500
committerDaniel Micay <danielmicay@gmail.com>2021-12-24 18:07:37 -0500
commitb8694923d9ae2ac83476f971c6d92901507fd695 (patch)
tree9caf44bd208e43257fb979580e3917a802bb3231 /static/build.html
parent400889bcb6fcafb49b5866f69b73594449e69b06 (diff)
reduce repo sync jobs due to rate limiting
Rate limiting has gotten much more aggressive and using -j32 often triggers it on a fast connection + fast computer. It doesn't appear to happen on most computers, but high end Ryzen machines with a fancy NVMe drive are enough to regular hit the limits making the extra jobs waste more time than they save.
Diffstat (limited to 'static/build.html')
-rw-r--r--static/build.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/static/build.html b/static/build.html
index 7492b9fb..7b64a4f5 100644
--- a/static/build.html
+++ b/static/build.html
@@ -339,7 +339,7 @@
<pre>mkdir grapheneos-12
cd grapheneos-12
repo init -u https://github.com/GrapheneOS/platform_manifest.git -b 12
-repo sync -j32</pre>
+repo sync -j16</pre>
<p>If your network is unreliable and <code>repo sync</code> fails, you can run the
<code>repo sync</code> command again to continue from where it was interrupted. It
@@ -368,7 +368,7 @@ cd ../..</pre>
<p>Complete the source tree download:</p>
- <pre>repo sync -j32</pre>
+ <pre>repo sync -j16</pre>
<p>The manifest for the latest stable release refers to the revisions in other
repositories via commit hashes rather than tag names. This avoids the need to use a
@@ -384,7 +384,7 @@ cd ../..</pre>
<h3><a href="#updating-and-switching-branches-or-tags">Updating and switching branches or tags</a></h3>
<p>To update the source tree, run the <code>repo init</code> command again to select
- the branch or tag and then run <code>repo sync -j32</code> again. You may need to add
+ the branch or tag and then run <code>repo sync -j16</code> again. You may need to add
<code>--force-sync</code> if a repository switched from one source to another,
such as when GrapheneOS forks an additional Android Open Source Project repository.
You don't need to start over to switch between different branches or tags. You may