更新时间:2024-11-08 GMT+08:00
分享

创建构建任务

功能介绍

创建构建任务

调用方法

请参见如何调用API

URI

POST /v1/job/create

请求参数

表1 请求Body参数

参数

是否必选

参数类型

描述

arch

String

使用机器的架构

project_id

String

构建任务所在项目的ID

job_name

String

任务名称

auto_update_sub_module

String

是否自动更新子模块

flavor

String

执行机规格

host_type

String

host类型

build_config_type

String

构建任务配置类型

build_if_code_updated

String

提交代码触发构建开关

parameters

Array of CreateBuildJobParameter objects

构建执行参数列表

scms

Array of CreateBuildJobScm objects

构建执行SCM

steps

Array of CreateBuildJobSteps objects

构建执行的步骤

triggers

Array of Trigger objects

定时任务触发器集合

表2 CreateBuildJobParameter

参数

是否必选

参数类型

描述

name

String

参数定义名,默认为hudson.model.StringParameterDefinition

params

Array of CreateBuildJobParameterParam objects

构建执行参数子参数

表3 CreateBuildJobParameterParam

参数

是否必选

参数类型

描述

name

String

参数字段名

value

String

参数字段值

limits

Array of LimitsParam objects

枚举类参数限制

表4 LimitsParam

参数

是否必选

参数类型

描述

disable

String

是否生效,默认为"0",为生效状态

display_name

String

参数展示的名字

name

String

参数名字

表5 CreateBuildJobScm

参数

是否必选

参数类型

描述

branch

String

代码分支

url

String

代码仓地址

repo_id

String

repo的id

web_url

String

代码仓http地址

scm_type

String

仓库类别,Repo、Github等

is_auto_build

Boolean

是否自动构建

enable_git_lfs

Boolean

是否启用gitlfs

build_type

String

构建类型,分支构建、TAG构建等

depth

String

克隆深度

end_point_id

String

通用git等代码拉取扩展点ID

source

String

来源类型

group_name

String

仓库分组

repo_name

String

仓库名称

表6 CreateBuildJobSteps

参数

是否必选

参数类型

描述

properties

Map<String,Object>

构建步骤属性参数

module_id

String

构建步骤id

name

String

构建步骤名称

version

String

构建步骤版本

enable

Boolean

是否开启

表7 Trigger

参数

是否必选

参数类型

描述

parameters

Array of ParameterItem objects

自定义参数

name

String

触发器类型

表8 ParameterItem

参数

是否必选

参数类型

描述

name

String

参数名称

value

String

参数值

响应参数

状态码: 200

表9 响应Body参数

参数

参数类型

描述

result

result object

结果

status

String

状态信息

error

String

错误信息

表10 result

参数

参数类型

描述

job_id

String

构建任务ID

状态码: 400

表11 响应Body参数

参数

参数类型

描述

error_code

String

错误码

error_msg

String

错误描述

状态码: 401

表12 响应Body参数

参数

参数类型

描述

error_code

String

错误码

error_msg

String

错误描述

状态码: 403

表13 响应Body参数

参数

参数类型

描述

error_code

String

错误码

error_msg

String

错误描述

状态码: 404

表14 响应Body参数

参数

参数类型

描述

error_code

String

错误码

error_msg

String

错误描述

状态码: 500

表15 响应Body参数

参数

参数类型

描述

error_code

String

错误码

error_msg

String

错误描述

请求示例

POST https://{endpoint}/v1/job/create

{
  "arch" : "x86-64",
  "project_id" : "a287e712be6c404ca26e5f69040fa12b",
  "job_name" : "examplejob",
  "auto_update_sub_module" : "false",
  "flavor" : "2u8g",
  "parameters" : [ {
    "name" : "hudson.model.StringParameterDefinition",
    "params" : [ {
      "name" : "name",
      "value" : "codeBranch"
    }, {
      "name" : "type",
      "value" : "normalparam"
    }, {
      "name" : "defaultValue",
      "value" : "master"
    }, {
      "name" : "description",
      "value" : "description"
    }, {
      "name" : "deletion",
      "value" : "false"
    }, {
      "name" : "defaults",
      "value" : "true"
    }, {
      "name" : "staticVar",
      "value" : "false"
    }, {
      "name" : "sensitiveVar",
      "value" : "false"
    } ]
  } ],
  "scms" : [ {
    "branch" : "master",
    "url" : "git@codehub.devcloud.cn-north-7.ulanqab.huawei.com:soso-test00001/an.git",
    "repo_id" : "2111746211",
    "web_url" : "https://codehub.devcloud.cn-north-7.ulanqab.huawei.com/codehub/2111746211/home",
    "scm_type" : "codehub",
    "is_auto_build" : false,
    "build_type" : "branch",
    "depth" : "1"
  } ],
  "steps" : [ {
    "properties" : null,
    "module_id" : "devcloud2018.codeci_action_20043.action",
    "name" : "Maven构建",
    "version" : "20231001.6",
    "enable" : true
  } ],
  "host_type" : "devcloud"
}

响应示例

状态码: 200

OK

{
  "result" : {
    "job_id" : "db8467d972cc47f7a1bd2a3a3e77596a"
  },
  "error" : null,
  "status" : "success"
}

状态码

状态码

描述

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Internal Server Error

错误码

请参见错误码

相关文档