-
Notifications
You must be signed in to change notification settings - Fork 30
feat(test reports): storage addition #1271
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
base: main
Are you sure you want to change the base?
Conversation
* refactor(pipeline): use server API types for pipeline and migrate compiler types * gci * feat: add sender rule for pipelines --------- Co-authored-by: David May <[email protected]>
* chore(lint): address existing linter issues * remove dupl from exclusion list
* enhance(build): add fork field for OIDC * fix test * integration test update
* enhance(yaml): allow for users to parse pipelines using old library * testing file for internal yaml * chore(compiler): convert unmarshaled buildkite to go-yaml * remove tests used in later PRs * lintfix * fix schema * gci
…1230) Co-authored-by: David May <[email protected]>
Co-authored-by: david may <[email protected]>
* init commit * feat(repo): add pending approval timeout * fix test * remove dead code --------- Co-authored-by: David May <[email protected]>
…r have dupl anchors in map (#1232)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
|
import ( | ||
"context" | ||
"fmt" | ||
"github.com/urfave/cli/v3" |
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.
🚫 [golangci] reported by reviewdog 🐶
File is not properly formatted (gci)
@@ -59,6 +59,7 @@ func New(ctx context.Context, address, token string) (*Client, error) { | |||
// overwrite the github client | |||
c.githubClient = gitClient | |||
|
|||
//nolint:revive // ignore returning unexported engine |
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.
🚫 [golangci] reported by reviewdog 🐶
directive //nolint:revive // ignore returning unexported engine
is unused for linter "revive" (nolintlint)
@@ -77,5 +77,6 @@ | |||
return nil, fmt.Errorf("unable to create indexes for %s table: %w", constants.TableHook, err) | |||
} | |||
|
|||
//nolint:revive // ignore returning unexported engine |
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.
🚫 [golangci] reported by reviewdog 🐶
directive //nolint:revive // ignore returning unexported engine
is unused for linter "revive" (nolintlint)
@@ -77,5 +77,6 @@ func New(opts ...EngineOpt) (*Engine, error) { | |||
return nil, fmt.Errorf("unable to create indexes for %s table: %w", constants.TableRepo, err) | |||
} | |||
|
|||
//nolint:revive // ignore returning unexported engine |
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.
🚫 [golangci] reported by reviewdog 🐶
directive //nolint:revive // ignore returning unexported engine
is unused for linter "revive" (nolintlint)
) | ||
|
||
// FromCLICommand helper function to setup Minio Client from the CLI arguments. | ||
func FromCLICommand(ctx context.Context, c *cli.Command) (Storage, error) { |
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.
🚫 [golangci] reported by reviewdog 🐶
unused-parameter: parameter 'ctx' seems to be unused, consider removing or renaming it as _ (revive)
This PR introduces a new feature for the Vela server that adds test report storage capabilities. The setup of S3 compatible storage follows the current structure of queue and scm setup.