mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
8a04af412e
* Refactor dependencies * Regenerate drone.yml * Reorder steps in starlark files * Make build depend on test * Make test steps depend on lint * Make gen-version step depend on build steps * Refactor step dependencies * Move e2e-tests step before upload_cdn * Sync with main
15 lines
820 B
Markdown
15 lines
820 B
Markdown
# Project Development Dependencies.
|
|
|
|
This is directory which stores Go modules with pinned buildable package that is used within this repository, managed by https://github.com/bwplotka/bingo.
|
|
|
|
- Run `bingo get` to install all tools having each own module file in this directory.
|
|
- Run `bingo get <tool>` to install <tool> that have own module file in this directory.
|
|
- For Makefile: Make sure to put `include .bingo/Variables.mk` in your Makefile, then use $(<upper case tool name>) variable where <tool> is the .bingo/<tool>.mod.
|
|
- For shell: Run `source .bingo/variables.env` to source all environment variable for each tool.
|
|
- For go: Import `.bingo/variables.go` to for variable names.
|
|
- See https://github.com/bwplotka/bingo or -h on how to add, remove or change binaries dependencies.
|
|
|
|
## Requirements
|
|
|
|
- Go 1.14+
|