Skip to content

Commit ed5292c

Browse files
committed
fix:build cicd
1 parent 3b109d5 commit ed5292c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_linux_only.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@ jobs:
3333
- name: Build and Clean Artifacts
3434
working-directory: ./bisheng-telemetry-search/telemetry_search
3535
run: |
36-
# 1. 执行构建
36+
# 执行构建
3737
python build_all.py --delete-source
3838
39-
# 2. [关键] 在上传前彻底清理源代码和中间文件
39+
# 在上传前彻底清理源代码和中间文件
4040
# 即使 build_all.py 做了清理,这里再次强制清理,防止 .c 文件泄露
4141
find . -name "*.c" -delete
4242
find . -name "*.cpp" -delete
4343
find . -name "__pycache__" -exec rm -rf {} +
4444
rm -rf ./build
4545
rm -f build_all.py setup.py # 删除构建脚本本身
4646
47-
# 3. 准备输出
47+
# 准备输出
4848
mkdir ../../build_output
4949
cp -r ./* ../../build_output/
5050

0 commit comments

Comments
 (0)