add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

29
pages.zh/common/pio-ci.md Normal file
View File

@@ -0,0 +1,29 @@
# pio ci
> 使用任意源代码结构构建 PlatformIO 项目。
> 这将创建一个新的临时项目,源代码将被复制到其中。
> 更多信息请访问: <https://docs.platformio.org/en/latest/core/userguide/cmd_ci.html>。
- 在默认的系统临时目录中构建 PlatformIO 项目,并在之后删除它:
`pio ci {{path/to/project}}`
- 构建 PlatformIO 项目并指定特定的库:
`pio ci --lib {{path/to/library_directory}} {{path/to/project}}`
- 构建 PlatformIO 项目并指定特定的板(`pio boards` 列出所有板):
`pio ci --board {{board}} {{path/to/project}}`
- 在特定目录中构建 PlatformIO 项目:
`pio ci --build-dir {{path/to/build_directory}} {{path/to/project}}`
- 构建 PlatformIO 项目并且不删除构建目录:
`pio ci --keep-build-dir {{path/to/project}}`
- 使用特定的配置文件构建 PlatformIO 项目:
`pio ci --project-conf {{path/to/platformio.ini}}`