初步自动构建工程实现

This commit is contained in:
2024-08-30 16:16:17 +08:00
parent 2ebe593876
commit 2da86f0aa2
7 changed files with 330 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
#!/bin/bash
CPU_CORES=$(($(grep -c processor < /proc/cpuinfo)*2))
make build-python -j$CPU_CORES
make install-to-qemu-python -j$CPU_CORES
exit 0