-
Notifications
You must be signed in to change notification settings - Fork 555
feat: added build-context support in ci build #3329
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
Merged
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
ead5873
wip
gireesh-naidu 1c4daf1
putting default build comtext to value to root dir
gireesh-naidu 074f6e9
fix
gireesh-naidu 39edfe8
Merge branch 'main' into build-context
gireesh-naidu 9dc3c1a
script added
gireesh-naidu 41632d3
script added
gireesh-naidu 59b5b7f
gitmaterial id added for build context
gireesh-naidu 9ec24cf
fix
gireesh-naidu 140b1b0
fix
gireesh-naidu a10a466
sql file update
gireesh-naidu cb10b78
fix
gireesh-naidu a688f9f
Merge branch 'main' into build-context
gireesh-naidu cbe47f9
fix
gireesh-naidu ec0e2fe
Merge branch 'main' into build-context
gireesh-naidu 39c008e
sql script number updated
gireesh-naidu 643454a
minor fix
gireesh-naidu 9b8f232
minor fix
gireesh-naidu 44f7e1f
minor fix
gireesh-naidu 48c506d
minor fix
gireesh-naidu da70bd5
remove '.' from empty context
gireesh-naidu de4733b
Merge branch 'main' into build-context
gireesh-naidu ef06cc9
sql script updated
gireesh-naidu 2253579
typo
gireesh-naidu ffd3a2f
code review changes
gireesh-naidu 86aec9a
fix
gireesh-naidu 8e542be
fix
gireesh-naidu 478b48d
remove build-context column from db
gireesh-naidu ec3c25f
Merge branch 'main' into build-context
gireesh-naidu 672737f
script number change
gireesh-naidu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,4 @@ | ||
| ALTER TABLE ci_template DROP COLUMN IF EXISTS build_context_git_material_id; | ||
| ALTER TABLE ci_template DROP CONSTRAINT IF EXISTS ci_template_build_context_git_material_id_fkey; | ||
| ALTER TABLE ci_template_override DROP COLUMN IF EXISTS build_context_git_material_id; | ||
| ALTER TABLE ci_template_override DROP CONSTRAINT IF EXISTS ci_template_override_build_context_git_material_id_fkey; |
This file contains hidden or 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,10 @@ | ||
| ALTER TABLE ci_template ADD COLUMN build_context_git_material_id INT; | ||
| UPDATE ci_template SET build_context_git_material_id = git_material_id; | ||
| ALTER TABLE ci_template_override ADD COLUMN build_context_git_material_id INT; | ||
| UPDATE ci_template_override SET build_context_git_material_id = git_material_id; | ||
|
|
||
| ALTER TABLE ci_template | ||
| ADD CONSTRAINT "ci_template_build_context_git_material_id_fkey" FOREIGN KEY ("build_context_git_material_id") REFERENCES "public"."git_material" ("id"); | ||
|
|
||
| ALTER TABLE ci_template_override | ||
| ADD CONSTRAINT "ci_template_override_build_context_git_material_id_fkey" FOREIGN KEY ("build_context_git_material_id") REFERENCES "public"."git_material" ("id"); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.