-
Notifications
You must be signed in to change notification settings - Fork 44
Feature: Create builds directly instead of restarting old builds #73
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: v2
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,14 @@ | ||
| module github.com/drone-plugins/drone-downstream | ||
|
|
||
| go 1.14 | ||
| go 1.15 | ||
|
|
||
| require ( | ||
| github.com/drone-plugins/drone-plugin-lib v0.3.1 | ||
| github.com/drone/drone-go v1.3.1 | ||
| github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect | ||
| github.com/drone-plugins/drone-plugin-lib v0.4.0 | ||
| github.com/drone/drone-go v1.4.0 | ||
| github.com/joho/godotenv v1.3.0 | ||
| github.com/stretchr/testify v1.4.0 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @tboerger do you have any preferences on go testing modules? I don't have any strong opinions on it all.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No strong opinion on that, but isn't the standard library enough?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can do without it, but it does make error checking in tests far less verbose. |
||
| github.com/urfave/cli/v2 v2.2.0 | ||
| golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d | ||
| golang.org/x/net v0.0.0-20200923182212-328152dc79b1 // indirect | ||
| golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 | ||
| ) | ||
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.
Believe @bradrydzewski 's initial ask was that
waitandtimeoutwould apply to the triggered build so should probably modify that accordingly.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.
OK, will try.
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.
See @bradrydzewski ''s comments below at #73 (comment)