v4.1 提交新的模型,但是模型不能运行,如果要运行,把ci-process卸载pom
This commit is contained in:
parent
42759b8f40
commit
76ce3d1e2e
@ -25,6 +25,11 @@ public interface IModelTemplate {
|
|||||||
@Schema(title = "变量", required = true)
|
@Schema(title = "变量", required = true)
|
||||||
Map<String, String> getVariables();
|
Map<String, String> getVariables();
|
||||||
|
|
||||||
|
void setTemplate(String template);
|
||||||
|
|
||||||
|
void setRef(String ref);
|
||||||
|
|
||||||
|
void setVariables(Map<String, String> variables);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 判读是否来自于模板
|
* 判读是否来自于模板
|
||||||
|
@ -10,6 +10,7 @@ import io.swagger.v3.oas.annotations.media.Schema;
|
|||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
import lombok.experimental.SuperBuilder;
|
import lombok.experimental.SuperBuilder;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@ -34,28 +35,29 @@ import java.util.Map;
|
|||||||
@JsonSubTypes.Type(value = VMBuildContainer.class, name = VMBuildContainer.classType)
|
@JsonSubTypes.Type(value = VMBuildContainer.class, name = VMBuildContainer.classType)
|
||||||
})
|
})
|
||||||
@Getter
|
@Getter
|
||||||
|
@NoArgsConstructor
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public abstract class Container implements IModelTemplate {
|
public abstract class Container implements IModelTemplate {
|
||||||
private String id;
|
protected String id; // seq id
|
||||||
private String name;
|
protected String name;
|
||||||
private List<Element> elements;
|
protected List<Element> elements;
|
||||||
private String status;
|
protected String status;
|
||||||
@Deprecated
|
@Deprecated(since = "即将被timeCost代替")
|
||||||
private Long startEpoch;
|
protected Long startEpoch;
|
||||||
@Deprecated
|
@Deprecated(since = "即将被timeCost代替")
|
||||||
private Long systemElapsed;
|
protected Long systemElapsed; // 系统耗时(开机时间)
|
||||||
@Deprecated
|
@Deprecated(since = "即将被timeCost代替")
|
||||||
private Long elementElapsed;
|
protected Long elementElapsed; // 插件执行耗时
|
||||||
private Boolean canRetry;
|
protected Boolean canRetry; // 当前job是否能重试
|
||||||
private String containerId;
|
protected String containerId; // container 流水线唯一ID,同seq id
|
||||||
private String containerHashId;
|
protected String containerHashId; // container 全局唯一ID
|
||||||
private String startVMStatus;
|
protected String startVMStatus;
|
||||||
private Integer executeCount;
|
protected Integer executeCount;
|
||||||
private String jobId;
|
protected String jobId; // 用户自定义id
|
||||||
private Boolean containPostTaskFlag;
|
protected Boolean containPostTaskFlag; // 是否包含post任务
|
||||||
private Boolean matrixGroupFlag;
|
protected Boolean matrixGroupFlag; // 是否为构建矩阵组
|
||||||
private BuildRecordTimeCost timeCost;
|
protected BuildRecordTimeCost timeCost; // 耗时结果
|
||||||
private Integer startVMTaskSeq;
|
protected Integer startVMTaskSeq; // 开机任务序号
|
||||||
|
|
||||||
public void resetBuildOption(int executeCount) {
|
public void resetBuildOption(int executeCount) {
|
||||||
this.status = null;
|
this.status = null;
|
||||||
|
@ -3,104 +3,51 @@ package cd.casic.ci.common.pipeline.container;
|
|||||||
import cd.casic.ci.common.pipeline.NameAndValue;
|
import cd.casic.ci.common.pipeline.NameAndValue;
|
||||||
import cd.casic.ci.common.pipeline.option.JobControlOption;
|
import cd.casic.ci.common.pipeline.option.JobControlOption;
|
||||||
import cd.casic.ci.common.pipeline.option.MatrixControlOption;
|
import cd.casic.ci.common.pipeline.option.MatrixControlOption;
|
||||||
import cd.casic.ci.common.pipeline.pojo.element.Element;
|
|
||||||
import cd.casic.ci.common.pipeline.pojo.time.BuildRecordTimeCost;
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import kotlin.ReplaceWith;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.NoArgsConstructor;
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
/**
|
|
||||||
* @Author:mianbin
|
|
||||||
* @Package:cd.casic.ci.common.pipeline.container
|
|
||||||
* @Project:ops-pro
|
|
||||||
* @name:NormalContainer
|
|
||||||
* @Date:2025/03/25 16:54
|
|
||||||
* @Filename:NormalContainer
|
|
||||||
* @description:Todo
|
|
||||||
*/
|
|
||||||
@Data
|
@Data
|
||||||
@NoArgsConstructor
|
@EqualsAndHashCode(callSuper = false)
|
||||||
@Schema(title = "流水线模型-普通任务容器")
|
@Schema(title = "流水线模型-普通任务容器")
|
||||||
public class NormalContainer implements Container {
|
public class NormalContainer extends Container {
|
||||||
public static final String classType = "normal";
|
public static final String CLASS_TYPE = "normal";
|
||||||
|
|
||||||
|
private Boolean enableSkip = false;
|
||||||
|
|
||||||
@Schema(title = "构建容器序号id", required = false, readOnly = true)
|
|
||||||
private String id;
|
|
||||||
@Schema(title = "容器名称", required = true)
|
|
||||||
private String name;
|
|
||||||
@Schema(title = "任务集合", required = true)
|
|
||||||
private List<Element> elements;
|
|
||||||
@Schema(title = "容器状态", required = false, readOnly = true)
|
|
||||||
private String status;
|
|
||||||
@Schema(title = "系统运行时间", required = false, readOnly = true)
|
|
||||||
@Deprecated
|
|
||||||
private Long startEpoch;
|
|
||||||
@Schema(title = "系统耗时(开机时间)", required = false, readOnly = true)
|
|
||||||
@Deprecated
|
|
||||||
private Long systemElapsed;
|
|
||||||
@Schema(title = "插件执行耗时", required = false, readOnly = true)
|
|
||||||
@Deprecated
|
|
||||||
private Long elementElapsed;
|
|
||||||
@Schema(title = "允许可跳过", required = false)
|
|
||||||
@Deprecated
|
|
||||||
private Boolean enableSkip;
|
|
||||||
@Schema(title = "触发条件", required = false)
|
|
||||||
@Deprecated
|
|
||||||
private List<NameAndValue> conditions;
|
private List<NameAndValue> conditions;
|
||||||
@Schema(title = "是否可重试-仅限于构建详情展示重试,目前未作为编排的选项,暂设置为null不存储", required = false, readOnly = true)
|
|
||||||
private Boolean canRetry;
|
|
||||||
@Schema(title = "构建容器顺序ID(同id值)", required = false, readOnly = true)
|
|
||||||
private String containerId;
|
|
||||||
@Schema(title = "容器唯一ID", required = false, readOnly = true)
|
|
||||||
private String containerHashId;
|
|
||||||
@Schema(title = "无构建环境-等待运行环境启动的排队最长时间(分钟)", required = false)
|
|
||||||
@Deprecated
|
|
||||||
private Integer maxQueueMinutes = 60;
|
private Integer maxQueueMinutes = 60;
|
||||||
@Schema(title = "无构建环境-运行最长时间(分钟)", required = false)
|
|
||||||
@Deprecated
|
|
||||||
private Integer maxRunningMinutes = 1440;
|
private Integer maxRunningMinutes = 1440;
|
||||||
@Schema(title = "流程控制选项", required = true)
|
|
||||||
private JobControlOption jobControlOption;
|
private JobControlOption jobControlOption; // 为了兼容旧数据,所以定义为可空以及var
|
||||||
@Schema(title = "互斥组", required = false)
|
private MutexGroup mutexGroup; // 为了兼容旧数据,所以定义为可空以及var
|
||||||
private MutexGroup mutexGroup;
|
|
||||||
@Schema(title = "构建环境启动状态", required = false, readOnly = true)
|
|
||||||
private String startVMStatus;
|
|
||||||
@Schema(title = "容器运行次数", required = false, readOnly = true)
|
|
||||||
private Integer executeCount;
|
|
||||||
@Schema(title = "用户自定义ID", required = false, hidden = false)
|
|
||||||
private String jobId;
|
|
||||||
@Schema(title = "是否包含post任务标识", required = false, readOnly = true)
|
|
||||||
private Boolean containPostTaskFlag;
|
|
||||||
@Schema(title = "是否为构建矩阵", required = false, readOnly = true)
|
|
||||||
private Boolean matrixGroupFlag;
|
|
||||||
@Schema(title = "各项耗时", required = true)
|
|
||||||
private BuildRecordTimeCost timeCost;
|
|
||||||
@Schema(title = "开机任务序号", required = false, readOnly = true)
|
|
||||||
private Integer startVMTaskSeq;
|
|
||||||
@Schema(title = "构建矩阵配置项", required = false)
|
|
||||||
private MatrixControlOption matrixControlOption;
|
private MatrixControlOption matrixControlOption;
|
||||||
@Schema(title = "所在构建矩阵组的containerHashId(分裂后的子容器特有字段)", required = false)
|
|
||||||
private String matrixGroupId;
|
private String matrixGroupId;
|
||||||
@Schema(title = "当前矩阵子容器的上下文组合(分裂后的子容器特有字段)", required = false)
|
|
||||||
private Map<String, String> matrixContext;
|
private Map<String, String> matrixContext;
|
||||||
@Schema(title = "分裂后的容器集合(分裂后的父容器特有字段)", required = false)
|
|
||||||
private List<NormalContainer> groupContainers;
|
private List<NormalContainer> groupContainers;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getClassType() {
|
public String getClassType() {
|
||||||
return classType;
|
return CLASS_TYPE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Container getContainerById(String vmSeqId) {
|
public Container getContainerById(String vmSeqId) {
|
||||||
if (id.equals(vmSeqId) || containerId.equals(vmSeqId)) return this;
|
if (vmSeqId.equals(id) || vmSeqId.equals(containerId)) {
|
||||||
if (groupContainers != null) {
|
return this;
|
||||||
for (Container container : groupContainers) {
|
}
|
||||||
if (container.getId().equals(vmSeqId) || container.getContainerId().equals(vmSeqId)) return container;
|
List<Container> containers = fetchGroupContainers();
|
||||||
|
if (containers != null) {
|
||||||
|
for (Container container : containers) {
|
||||||
|
if (vmSeqId.equals(container.getId()) || vmSeqId.equals(container.getContainerId())) {
|
||||||
|
return container;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@ -108,7 +55,7 @@ public class NormalContainer implements Container {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void retryFreshMatrixOption() {
|
public void retryFreshMatrixOption() {
|
||||||
groupContainers = new ArrayList<>();
|
groupContainers = null;
|
||||||
if (matrixControlOption != null) {
|
if (matrixControlOption != null) {
|
||||||
matrixControlOption.setFinishCount(null);
|
matrixControlOption.setFinishCount(null);
|
||||||
matrixControlOption.setTotalCount(null);
|
matrixControlOption.setTotalCount(null);
|
||||||
@ -117,7 +64,7 @@ public class NormalContainer implements Container {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<Container> fetchGroupContainers() {
|
public List<Container> fetchGroupContainers() {
|
||||||
return groupContainers != null ? new ArrayList<>(groupContainers) : null;
|
return groupContainers != null ? List.copyOf(groupContainers) : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -126,47 +73,23 @@ public class NormalContainer implements Container {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Boolean containerEnabled() {
|
public boolean containerEnabled() {
|
||||||
return jobControlOption != null ? jobControlOption.getEnable() : true;
|
return jobControlOption == null || jobControlOption.getEnable();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setContainerEnable(Boolean enable) {
|
public void setContainerEnable(boolean enable) {
|
||||||
jobControlOption = jobControlOption != null ? jobControlOption.copy(enable) : new JobControlOption(enable);
|
jobControlOption = jobControlOption != null ? jobControlOption.copy(enable) : new JobControlOption(enable);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void resetBuildOption(int executeCount) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void transformCompatibility() {
|
public void transformCompatibility() {
|
||||||
if (jobControlOption != null && jobControlOption.getTimeoutVar() == null || jobControlOption.getTimeoutVar().isBlank()) {
|
if (jobControlOption != null && (jobControlOption.getTimeoutVar() == null || jobControlOption.getTimeoutVar().isEmpty())) {
|
||||||
jobControlOption.setTimeoutVar(String.valueOf(jobControlOption.getTimeout()));
|
jobControlOption.setTimeoutVar(String.valueOf(jobControlOption.getTimeout()));
|
||||||
}
|
}
|
||||||
if (mutexGroup != null && (mutexGroup.getTimeoutVar() == null || mutexGroup.getTimeoutVar().isBlank())) {
|
if (mutexGroup != null && (mutexGroup.getTimeoutVar() == null || mutexGroup.getTimeoutVar().isEmpty())) {
|
||||||
mutexGroup.setTimeoutVar(String.valueOf(mutexGroup.getTimeout()));
|
mutexGroup.setTimeoutVar(String.valueOf(mutexGroup.getTimeout()));
|
||||||
}
|
}
|
||||||
}
|
super.transformCompatibility();
|
||||||
|
|
||||||
@Override
|
|
||||||
public Map<String, Object> genTaskParams() {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getTemplate() {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getRef() {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Map<String, String> getVariables() {
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@ package cd.casic.ci.common.pipeline.container;
|
|||||||
|
|
||||||
import cd.casic.ci.common.pipeline.pojo.BuildFormProperty;
|
import cd.casic.ci.common.pipeline.pojo.BuildFormProperty;
|
||||||
import cd.casic.ci.common.pipeline.pojo.BuildNo;
|
import cd.casic.ci.common.pipeline.pojo.BuildNo;
|
||||||
|
import cd.casic.ci.common.pipeline.pojo.element.Element;
|
||||||
|
import cd.casic.ci.common.pipeline.pojo.time.BuildRecordTimeCost;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.NoArgsConstructor;
|
import lombok.NoArgsConstructor;
|
||||||
@ -21,7 +23,7 @@ import java.util.Map;
|
|||||||
@Data
|
@Data
|
||||||
@NoArgsConstructor
|
@NoArgsConstructor
|
||||||
@Schema(title = "流水线模型-构建触发容器")
|
@Schema(title = "流水线模型-构建触发容器")
|
||||||
public class TriggerContainer implements Container {
|
public class TriggerContainer extends Container {
|
||||||
public static final String classType = "trigger";
|
public static final String classType = "trigger";
|
||||||
|
|
||||||
@Schema(title = "构建容器序号id", required = false, readOnly = true)
|
@Schema(title = "构建容器序号id", required = false, readOnly = true)
|
||||||
@ -94,17 +96,32 @@ public class TriggerContainer implements Container {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Boolean containerEnabled() {
|
public boolean containerEnabled() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setContainerEnable(Boolean enable) {
|
public void setContainerEnable(boolean enable) {
|
||||||
// No operation needed
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void transformCompatibility() {
|
public void transformCompatibility() {
|
||||||
// No compatibility transformation needed
|
// No compatibility transformation needed
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getTemplate() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getRef() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Map<String, String> getVariables() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ import java.util.Set;
|
|||||||
@Data
|
@Data
|
||||||
@NoArgsConstructor
|
@NoArgsConstructor
|
||||||
@Schema(title = "流水线模型-虚拟机构建容器")
|
@Schema(title = "流水线模型-虚拟机构建容器")
|
||||||
public class VMBuildContainer implements Container {
|
public class VMBuildContainer extends Container {
|
||||||
public static final String classType = "vmBuild";
|
public static final String classType = "vmBuild";
|
||||||
|
|
||||||
@Schema(title = "构建容器序号id", required = false, readOnly = true)
|
@Schema(title = "构建容器序号id", required = false, readOnly = true)
|
||||||
@ -155,13 +155,13 @@ public class VMBuildContainer implements Container {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Boolean containerEnabled() {
|
public boolean containerEnabled() {
|
||||||
return jobControlOption != null ? jobControlOption.getEnable() : true;
|
return jobControlOption != null ? jobControlOption.getEnable() : true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setContainerEnable(Boolean enable) {
|
public void setContainerEnable(boolean enable) {
|
||||||
jobControlOption = jobControlOption != null ? jobControlOption.setEnable(enable) : new JobControlOption(enable);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -173,4 +173,19 @@ public class VMBuildContainer implements Container {
|
|||||||
mutexGroup.setTimeoutVar(String.valueOf(mutexGroup.getTimeout()));
|
mutexGroup.setTimeoutVar(String.valueOf(mutexGroup.getTimeout()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getTemplate() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getRef() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Map<String, String> getVariables() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user