-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
Sync releases table with tags on push and for mirrors #2459
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1924c25
Sync releases table with tags on push and for mirrors
lafriks 7a4e467
Code style fixes
lafriks 8b78ce7
Fix api to return only releases
lafriks b2a9ea0
Optimize release creation and update
lafriks 93f8157
Fix release lower tag name updating
lafriks 15171ac
handle tag reference update by addionally comparing commit id
daviian 3927a9a
Merge branch 'master' into sync_releases_tags
lunny 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 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 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,57 @@ | ||
// Copyright 2017 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package migrations | ||
|
||
import ( | ||
"fmt" | ||
|
||
"code.gitea.io/git" | ||
"code.gitea.io/gitea/models" | ||
"code.gitea.io/gitea/modules/log" | ||
|
||
"github.com/go-xorm/xorm" | ||
) | ||
|
||
// ReleaseV39 describes the added field for Release | ||
type ReleaseV39 struct { | ||
IsTag bool `xorm:"NOT NULL DEFAULT false"` | ||
} | ||
|
||
// TableName will be invoked by XORM to customrize the table name | ||
func (*ReleaseV39) TableName() string { | ||
return "release" | ||
} | ||
|
||
func releaseAddColumnIsTagAndSyncTags(x *xorm.Engine) error { | ||
if err := x.Sync2(new(ReleaseV39)); err != nil { | ||
return fmt.Errorf("Sync2: %v", err) | ||
} | ||
|
||
// For the sake of SQLite3, we can't use x.Iterate here. | ||
offset := 0 | ||
pageSize := 20 | ||
for { | ||
repos := make([]*models.Repository, 0, pageSize) | ||
if err := x.Table("repository").Asc("id").Limit(pageSize, offset).Find(&repos); err != nil { | ||
return fmt.Errorf("select repos [offset: %d]: %v", offset, err) | ||
} | ||
for _, repo := range repos { | ||
gitRepo, err := git.OpenRepository(repo.RepoPath()) | ||
if err != nil { | ||
log.Warn("OpenRepository: %v", err) | ||
continue | ||
} | ||
|
||
if err = models.SyncReleasesWithTags(repo, gitRepo); err != nil { | ||
log.Warn("SyncReleasesWithTags: %v", err) | ||
} | ||
} | ||
if len(repos) < pageSize { | ||
break | ||
} | ||
offset += pageSize | ||
} | ||
return nil | ||
} |
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
update after delete?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
forgot to remove update, good catch, thx
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actually it is just in diff looks like this, if you look at the full file code there is no update before delete, update is from other function :)