瀏覽代碼

fix(action): reduce parallel jobs from 16 to 8 for repo sync in action.yml

TheWildJames 4 月之前
父節點
當前提交
be6010719c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      .github/actions/download-kernel/action.yml

+ 1 - 1
.github/actions/download-kernel/action.yml

@@ -55,7 +55,7 @@ runs:
 
         while [ $attempt -le $MAX_RETRIES ]; do
           echo "Attempt $attempt/$MAX_RETRIES: repo sync (timeout $SYNC_TIMEOUT)..."
-          if timeout $SYNC_TIMEOUT repo sync -c -j16 --fail-fast --no-tags --force-sync --no-clone-bundle --optimized-fetch --retry-fetches=3; then
+          if timeout $SYNC_TIMEOUT repo sync -c -j8 --fail-fast --no-tags --force-sync --no-clone-bundle --optimized-fetch --retry-fetches=3; then
             echo "repo sync succeeded on attempt $attempt."
             break
           fi