编译构建 CODEARTS BUILD-使用PyInstaller构建:代码化构建

时间:2024-12-05 14:38:45

代码化构建

参考以下代码示例,修改在创建代码化构建使用的YAML文件中的BUILD部分代码信息。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
version: 2.0 # 必须是2.0
steps:
  BUILD:
    - python: 
        name: PyInstaller构建
        image: cloudbuild@python3.6
        inputs: 
          command: |
            pip config set global.index-url https://pypi.org/simple
            pip config set global.trusted-host repo.xxcloud.com
            # -F创建单一的可执行文件,文件位置在dist目录下
            # 详细命令参见: https://pyinstaller.readthedocs.io/en/stable/usage.html
            pyinstaller -F  *.py
表2 代码示例参数说明

参数

类型

说明

name

string

可选参数。

构建步骤的名称,可自定义修改。

  • 支持中文、英文、数字、“-”“_”、英文逗号、英文分号、英文冒号、“.”“/”、圆括号(中英文)。
  • 字符长度范围为1~128。

image

string

可选参数。

填写镜像版本,“cloudbuild@”为固定部分,后面为支持的Python版本。

CodeArts Build支持的工具版本,可查看构建工具版本。若当前的工具版本不满足您的使用要求,您可以自定义构建环境

默认值:cloudbuild@python3.6。

command

string

配置构建打包命令,默认命令是将项目打包成一个可执行文件。更多命令使用方法可参考PyInstaller官网

support.huaweicloud.com/usermanual-codeci/codeci_ug_00092.html