We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b109d5 commit ed5292cCopy full SHA for ed5292c
.github/workflows/build_linux_only.yml
@@ -33,18 +33,18 @@ jobs:
33
- name: Build and Clean Artifacts
34
working-directory: ./bisheng-telemetry-search/telemetry_search
35
run: |
36
- # 1. 执行构建
+ # 执行构建
37
python build_all.py --delete-source
38
39
- # 2. [关键] 在上传前彻底清理源代码和中间文件
+ # 在上传前彻底清理源代码和中间文件
40
# 即使 build_all.py 做了清理,这里再次强制清理,防止 .c 文件泄露
41
find . -name "*.c" -delete
42
find . -name "*.cpp" -delete
43
find . -name "__pycache__" -exec rm -rf {} +
44
rm -rf ./build
45
rm -f build_all.py setup.py # 删除构建脚本本身
46
47
- # 3. 准备输出
+ # 准备输出
48
mkdir ../../build_output
49
cp -r ./* ../../build_output/
50
0 commit comments