mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-22 01:41:02 +00:00
Use editorconfig-checker (#982)
This commit is contained in:
parent
14b3cfff1b
commit
08479390ff
10 changed files with 60 additions and 41 deletions
14
.ecrc
Normal file
14
.ecrc
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"Exclude": [
|
||||||
|
".git",
|
||||||
|
"go.mod", "go.sum",
|
||||||
|
"vendor",
|
||||||
|
"fixtures",
|
||||||
|
"LICENSE",
|
||||||
|
"node_modules",
|
||||||
|
"server/store/datastore/migration/testfiles/sqlite.db",
|
||||||
|
"server/store/datastore/feed.go",
|
||||||
|
"_test.go",
|
||||||
|
"Makefile"
|
||||||
|
]
|
||||||
|
}
|
|
@ -14,6 +14,7 @@ indent_style = tab
|
||||||
|
|
||||||
[*.md]
|
[*.md]
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
|
indent_size = 1
|
||||||
|
|
||||||
[Makefile]
|
[Makefile]
|
||||||
indent_style = tab
|
indent_style = tab
|
||||||
|
|
|
@ -52,6 +52,10 @@ pipeline:
|
||||||
- "**/*.go"
|
- "**/*.go"
|
||||||
- "go.*"
|
- "go.*"
|
||||||
|
|
||||||
|
lint-editorconfig:
|
||||||
|
image: mstruebing/editorconfig-checker
|
||||||
|
group: test
|
||||||
|
|
||||||
test:
|
test:
|
||||||
image: golang:1.18
|
image: golang:1.18
|
||||||
group: test
|
group: test
|
||||||
|
|
|
@ -60,6 +60,7 @@ Some versions need some changes to the server configuration or the pipeline conf
|
||||||
- `drone.sqlite` -> `woodpecker.sqlite`
|
- `drone.sqlite` -> `woodpecker.sqlite`
|
||||||
|
|
||||||
- Plugin Settings moved into `settings` section:
|
- Plugin Settings moved into `settings` section:
|
||||||
|
|
||||||
```diff
|
```diff
|
||||||
pipline:
|
pipline:
|
||||||
something:
|
something:
|
||||||
|
|
|
@ -33,4 +33,3 @@ You should not use `sess.Begin()`, `sess.Commit()` or `sess.Close()` inside a mi
|
||||||
:::
|
:::
|
||||||
|
|
||||||
To automatically execute the migration after the start of the server, the new migration needs to be added to the end of `migrationTasks` in `server/store/datastore/migration/migration.go`. After a successful execution of that transaction the server will automatically add the migration to a list, so it won't be executed again on the next start.
|
To automatically execute the migration after the start of the server, the new migration needs to be added to the end of `migrationTasks` in `server/store/datastore/migration/migration.go`. After a successful execution of that transaction the server will automatically add the migration to a list, so it won't be executed again on the next start.
|
||||||
|
|
||||||
|
|
|
@ -52,10 +52,10 @@ func (s storage) ConfigFindApproved(config *model.Config) (bool, error) {
|
||||||
SELECT build_id FROM builds
|
SELECT build_id FROM builds
|
||||||
WHERE build_repo_id = ?
|
WHERE build_repo_id = ?
|
||||||
AND build_id in (
|
AND build_id in (
|
||||||
SELECT build_id
|
SELECT build_id
|
||||||
FROM build_config
|
FROM build_config
|
||||||
WHERE build_config.config_id = ?
|
WHERE build_config.config_id = ?
|
||||||
)
|
)
|
||||||
AND build_status NOT IN ('blocked', 'pending')
|
AND build_status NOT IN ('blocked', 'pending')
|
||||||
LIMIT 1
|
LIMIT 1
|
||||||
`, config.RepoID, config.ID).Count()
|
`, config.RepoID, config.ID).Count()
|
||||||
|
|
Loading…
Reference in a new issue