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

feat: separate build worker status timeline #6320

Open
wants to merge 22 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
9d3473a
oss changes for build worker status
ayu-devtron Jan 24, 2025
ad4f89f
oss code changes for ent
ayu-devtron Jan 27, 2025
bbec402
update sql script number
ayu-devtron Jan 27, 2025
063a657
update sql script
ayu-devtron Jan 27, 2025
74adbb7
add flag to enable new workflow stage history
ayu-devtron Jan 28, 2025
11c2f50
save workflow before stage in saving
ayu-devtron Jan 28, 2025
249ae53
return cancelled for wf status in case of aborted
ayu-devtron Jan 28, 2025
fe0250b
add in terminal state for cancelled
ayu-devtron Jan 28, 2025
941a95d
add comment and flag description
ayu-devtron Jan 28, 2025
a71d16f
fix for aborted and cancelled
ayu-devtron Jan 28, 2025
2bdc693
add cancel in terminal status
ayu-devtron Jan 28, 2025
0e8c54e
import cycle fix
ayu-devtron Jan 28, 2025
d9995c3
bug fix for cancel and abort
ayu-devtron Jan 28, 2025
279a3de
bug fix updating workflow
ayu-devtron Jan 28, 2025
302f92b
review comments -1
ayu-devtron Jan 31, 2025
1e7491a
ci refactor flow to ci service
ayu-devtron Feb 2, 2025
6cfcda5
move cd functions to cdworkflow runner service
ayu-devtron Feb 2, 2025
5c07fc7
status_type to status_for
ayu-devtron Feb 3, 2025
2630542
Merge branch 'develop' of github.com:devtron-labs/devtron into build-…
ayu-devtron Feb 3, 2025
4741208
Merge branch 'main' of github.com:devtron-labs/devtron into build-wor…
ayu-devtron Feb 4, 2025
06d4e95
merge conflicts + code refactor
ayu-devtron Feb 4, 2025
f91859d
Merge branch 'develop' of github.com:devtron-labs/devtron into build-…
ayu-devtron Feb 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update sql script
  • Loading branch information
ayu-devtron committed Jan 27, 2025
commit 063a657311ec1346dded02906e21840516da5043
2 changes: 1 addition & 1 deletion scripts/sql/31902800_build_worker_status.up.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CREATE SEQUENCE IF NOT EXISTS id_seq_workflow_execution_stage;

CREATE TABLE public.workflow_execution_stage (
CREATE TABLE IF NOT EXISTS public.workflow_execution_stage (
id int4 NOT NULL DEFAULT nextval('id_seq_workflow_execution_stage'::regclass),
stage_name varchar(50) NULL,
status varchar(50) NULL,
Expand Down