Skip to content

Commit

Permalink
Reduce nproc count by 1 to reduce strain on GitHub runner agent
Browse files Browse the repository at this point in the history
  • Loading branch information
cawilliamson committed Jan 1, 2024
1 parent c84220e commit a67ea5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-gsi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: perform full sources sync (with auto retry)
uses: nick-fields/retry@v2
with:
command: repo sync -c -j"$(nproc --all)" --force-sync --no-clone-bundle --no-tags
command: repo sync -c -j"$(($(nproc --all)-1))" --force-sync --no-clone-bundle --no-tags
max_attempts: 3
retry_on: error
timeout_minutes: 20
Expand Down

0 comments on commit a67ea5c

Please sign in to comment.