Skip to content

Commit 434d2c5

Browse files
authored
Modify firmware build to use single thread
Change build command to use a single thread for firmware compilation.
1 parent 933035f commit 434d2c5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/Build_LEDE_OP_x86_Releases.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ jobs:
8585
working-directory: ./openwrt
8686
run: |
8787
echo -e "$(nproc) thread build."
88-
make -j$(nproc) V=s
88+
make -j1 V=s
89+
# make -j$(nproc) V=s
8990
9091
# 步骤1:生成唯一的Tag(仅用GITHUB_ENV注入,移除过时的set-output)
9192
- name: Generate release tag

0 commit comments

Comments
 (0)