Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

希望支持分支进行上架测试 #4780

Closed
Toplife opened this issue Jul 26, 2021 · 1 comment
Closed

希望支持分支进行上架测试 #4780

Toplife opened this issue Jul 26, 2021 · 1 comment
Assignees
Labels
area/ci/backend CI 后端issue area/ci/frontend CI 前端特性issue done Production environment in tencent has been deploy for gray UAT environment in tencent has been deploy for test Test environment in tencent has been deploy grayed uat环境测试通过/test passed for uat stage kind/enhancement 功能改进特性 priority/important-longterm Important over the long term, but may not be staffed and/or may need multiple releases to complete. streams/done stream 生产部署成功 streams/for gray stream 灰度环境部署成功 streams/grayed stream 灰度环境测试通过 tested 测试环境通过/test patest passed for test stage testing 测试中
Milestone

Comments

@Toplife
Copy link

Toplife commented Jul 26, 2021

背景
我的蓝盾商店的一个原子要变更,那目前我这边的做法是先拉一个分支,然后分支修改,修改完了合入master,然后在蓝盾的工作台新增测试版本,然后在流水线测试,如果测试有问题,那就需要重复上述步骤

问题:

  1. 这样效率比较低
  2. 其实合入的master不一定是OK的(因为很多情况是需要走完流程才可以验证的)
@Toplife Toplife added the kind/enhancement 功能改进特性 label Jul 26, 2021
@irwinsun irwinsun added the area/ci/backend CI 后端issue label Jul 28, 2021
@irwinsun irwinsun added this to the v1.8 milestone Jul 28, 2021
@zanyzhao zanyzhao modified the milestones: v1.8, v1.7 Aug 4, 2021
@fayewong-v5 fayewong-v5 modified the milestones: v1.8, V1.9 Nov 17, 2021
@fayewong-v5 fayewong-v5 added the priority/important-longterm Important over the long term, but may not be staffed and/or may need multiple releases to complete. label Nov 19, 2021
@fayewong-v5 fayewong-v5 modified the milestones: V1.9, v1.8 Nov 19, 2021
@fayewong-v5 fayewong-v5 added the area/ci/frontend CI 前端特性issue label Dec 1, 2021
@irwinsun irwinsun modified the milestones: v1.8, V1.9 Apr 18, 2022
@irwinsun irwinsun modified the milestones: V1.9, V1.10 Sep 27, 2022
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Oct 10, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Oct 10, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Oct 10, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Oct 12, 2023
@yjieliang yjieliang added for test Test environment in tencent has been deploy testing 测试中 labels Oct 12, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Oct 16, 2023
@yjieliang yjieliang added the tested 测试环境通过/test patest passed for test stage label Nov 20, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 20, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 20, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 20, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 20, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 20, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 21, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 21, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 21, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 21, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 21, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 21, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 22, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 22, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 22, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 23, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 23, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 23, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 23, 2023
yjieliang added a commit to yjieliang/bk-ci that referenced this issue Nov 23, 2023
bkci-bot added a commit that referenced this issue Nov 24, 2023
feat:希望支持分支进行上架测试 #4780
@bkci-bot bkci-bot added for gray UAT environment in tencent has been deploy streams/for gray stream 灰度环境部署成功 labels Nov 24, 2023
vhwweng pushed a commit to vhwweng/bk-ci that referenced this issue Nov 27, 2023
@yjieliang yjieliang added grayed uat环境测试通过/test passed for uat stage streams/grayed stream 灰度环境测试通过 and removed done Production environment in tencent has been deploy labels Nov 28, 2023
@bkci-bot bkci-bot added streams/done stream 生产部署成功 done Production environment in tencent has been deploy labels Dec 8, 2023
@yjieliang
Copy link
Collaborator

需对插件版本数据进行初始化处理
1、将所有T_ATOM表 LATEST_TEST_FLAG字段数据设置为false
UPDATE T_ATOM
SET LATEST_TEST_FLAG = b'0';

2、将最新构建的插件测试版本数据LATEST_TEST_FLAG字段设置为true
UPDATE T_ATOM t1
JOIN (
SELECT ATOM_CODE, MAX(UPDATE_TIME) AS max_update_time
FROM T_ATOM t2
WHERE ATOM_STATUS IN (4, 5)
GROUP BY ATOM_CODE
) t2 ON t1.ATOM_CODE = t2.ATOM_CODE AND t1.UPDATE_TIME = t2.max_update_time
SET t1.LATEST_TEST_FLAG = b'1';

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/ci/backend CI 后端issue area/ci/frontend CI 前端特性issue done Production environment in tencent has been deploy for gray UAT environment in tencent has been deploy for test Test environment in tencent has been deploy grayed uat环境测试通过/test passed for uat stage kind/enhancement 功能改进特性 priority/important-longterm Important over the long term, but may not be staffed and/or may need multiple releases to complete. streams/done stream 生产部署成功 streams/for gray stream 灰度环境部署成功 streams/grayed stream 灰度环境测试通过 tested 测试环境通过/test patest passed for test stage testing 测试中
Projects
Development

No branches or pull requests

8 participants