forked from TencentBlueKing/bk-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
增加open接口查询任务状态 TencentBlueKing#8195 此接口bkrepo校验专用
- Loading branch information
Showing
3 changed files
with
21 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...ocess/api-process/src/main/kotlin/com/tencent/devops/process/pojo/open/BuildStatusInfo.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.tencent.devops.process.pojo.open | ||
|
||
import com.tencent.devops.common.pipeline.enums.BuildStatus | ||
|
||
/** | ||
* open接口返回的构建状态封装 | ||
*/ | ||
data class BuildStatusInfo ( | ||
val startUser: String, | ||
val debug: Boolean, | ||
val status: BuildStatus | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters