-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Update vendoring to dep from gdm #4314
Conversation
Because dep and hashicorp/consul.
closes #3100 |
.circleci/config.yml
Outdated
- run: 'make deps' | ||
- save_cache: |
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.
It looks like this doesn't cache the new data because the cache is immutable:
Skipping cache generation, cache already exists for key: vendor
Found one created at 2018-06-18 20:19:31 +0000 UTC
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.
I'd imagine its because nothing changed, but i'll make sure there isn't some update_cache
type entry.
.gitignore
Outdated
@@ -2,3 +2,4 @@ | |||
/telegraf | |||
/telegraf.exe | |||
/telegraf.gz | |||
vendor/ |
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.
Nitpick: /vendor
because what if I want to make internal/vendor/stupid_example.go
?
@@ -42,7 +42,7 @@ Ansible role: https://github.com/rossmcdonald/telegraf | |||
|
|||
Telegraf requires golang version 1.9 or newer, the Makefile requires GNU make. | |||
|
|||
Dependencies are managed with [gdm](https://github.com/sparrc/gdm), | |||
Dependencies are managed with [dep](https://github.com/golang/dep), |
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.
Also take a look through CONTRIBUTING.md for more gdm references.
* origin: (39 commits) Document path tag in tail input Update changelog Added path tag to tail input plugin (influxdata#4292) Run windows tests with -short Fix postfix input handling of multi-level queues (influxdata#4333) Update changelog Add support for comma in logparser timestamp format (influxdata#4311) Update vendoring to dep from gdm (influxdata#4314) Update changelog Add new measurement with results of pgrep lookup to procstat input (influxdata#4307) Update changelog Add valuecounter aggregator plugin (influxdata#3523) Update changelog Update docker input documentation for container status Add container status tag to docker input (influxdata#4259) Drop CI support for Go 1.8 (influxdata#4309) Update changelog Fix selection of tags under nested objects in the JSON parser (influxdata#4284) Update changelog Add owner tag on partitions in burrow input (influxdata#4281) ...
Use
dep
as telegraf's dependency manager.Resolves #3394
Closes #3564
Required for all PRs: