Skip to content

Commit a02feff

Browse files
committed
build(workflows): 添加 pip 安装进度条关闭选项
在构建工作流中安装依赖时添加 --progress-bar off 参数以减少日志输出噪音
1 parent 6b7879b commit a02feff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/template-python-build-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ jobs:
9393

9494
- name: Install build dependencies
9595
run: |
96-
pip install -q build setuptools wheel pybind11 cmake ninja scikit-build-core
96+
pip install --progress-bar off -q build setuptools wheel pybind11 cmake ninja scikit-build-core
97+
9798
9899
# 构建 Python 包
99100
- name: Build the package

0 commit comments

Comments
 (0)