Skip to content

Commit e105b5a

Browse files
authored
Chore: Add jsonnet library for devenv dashboards (grafana#57928)
1 parent 813ebf9 commit e105b5a

File tree

25 files changed

+1315
-272
lines changed

25 files changed

+1315
-272
lines changed

.bingo/Variables.mk

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.6. DO NOT EDIT.
1+
# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.7. DO NOT EDIT.
22
# All tools are designed to be build inside $GOBIN.
33
BINGO_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
44
GOPATH ?= $(shell go env GOPATH)
@@ -21,29 +21,35 @@ BRA := $(GOBIN)/bra-v0.0.0-20200517080246-1e3013ecaff8
2121
$(BRA): $(BINGO_DIR)/bra.mod
2222
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
2323
@echo "(re)installing $(GOBIN)/bra-v0.0.0-20200517080246-1e3013ecaff8"
24-
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=bra.mod -o=$(GOBIN)/bra-v0.0.0-20200517080246-1e3013ecaff8 "github.com/unknwon/bra"
24+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=bra.mod -o=$(GOBIN)/bra-v0.0.0-20200517080246-1e3013ecaff8 "github.com/unknwon/bra"
2525

2626
DRONE := $(GOBIN)/drone-v1.5.0
2727
$(DRONE): $(BINGO_DIR)/drone.mod
2828
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
2929
@echo "(re)installing $(GOBIN)/drone-v1.5.0"
30-
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=drone.mod -o=$(GOBIN)/drone-v1.5.0 "github.com/drone/drone-cli/drone"
30+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=drone.mod -o=$(GOBIN)/drone-v1.5.0 "github.com/drone/drone-cli/drone"
3131

3232
GOLANGCI_LINT := $(GOBIN)/golangci-lint-v1.49.0
3333
$(GOLANGCI_LINT): $(BINGO_DIR)/golangci-lint.mod
3434
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
3535
@echo "(re)installing $(GOBIN)/golangci-lint-v1.49.0"
36-
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=golangci-lint.mod -o=$(GOBIN)/golangci-lint-v1.49.0 "github.com/golangci/golangci-lint/cmd/golangci-lint"
36+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=golangci-lint.mod -o=$(GOBIN)/golangci-lint-v1.49.0 "github.com/golangci/golangci-lint/cmd/golangci-lint"
37+
38+
JB := $(GOBIN)/jb-v0.5.1
39+
$(JB): $(BINGO_DIR)/jb.mod
40+
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
41+
@echo "(re)installing $(GOBIN)/jb-v0.5.1"
42+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=jb.mod -o=$(GOBIN)/jb-v0.5.1 "github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb"
3743

3844
SWAGGER := $(GOBIN)/swagger-v0.30.2
3945
$(SWAGGER): $(BINGO_DIR)/swagger.mod
4046
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
4147
@echo "(re)installing $(GOBIN)/swagger-v0.30.2"
42-
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=swagger.mod -o=$(GOBIN)/swagger-v0.30.2 "github.com/go-swagger/go-swagger/cmd/swagger"
48+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=swagger.mod -o=$(GOBIN)/swagger-v0.30.2 "github.com/go-swagger/go-swagger/cmd/swagger"
4349

4450
WIRE := $(GOBIN)/wire-v0.5.0
4551
$(WIRE): $(BINGO_DIR)/wire.mod
4652
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
4753
@echo "(re)installing $(GOBIN)/wire-v0.5.0"
48-
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=wire.mod -o=$(GOBIN)/wire-v0.5.0 "github.com/google/wire/cmd/wire"
54+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=wire.mod -o=$(GOBIN)/wire-v0.5.0 "github.com/google/wire/cmd/wire"
4955

.bingo/bra.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT
22

33
go 1.17
44

5-
require github.com/unknwon/bra v0.0.0-20200517080246-1e3013ecaff8
5+
replace golang.org/x/sys => golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c
66

7-
replace golang.org/x/sys => golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c
7+
require github.com/unknwon/bra v0.0.0-20200517080246-1e3013ecaff8

.bingo/golangci-lint.mod

Lines changed: 0 additions & 169 deletions
Original file line numberDiff line numberDiff line change
@@ -3,172 +3,3 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT
33
go 1.19
44

55
require github.com/golangci/golangci-lint v1.49.0 // cmd/golangci-lint
6-
7-
require (
8-
4d63.com/gochecknoglobals v0.1.0 // indirect
9-
github.com/Antonboom/errname v0.1.7 // indirect
10-
github.com/Antonboom/nilnil v0.1.1 // indirect
11-
github.com/BurntSushi/toml v1.2.0 // indirect
12-
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect
13-
github.com/GaijinEntertainment/go-exhaustruct/v2 v2.3.0 // indirect
14-
github.com/Masterminds/semver v1.5.0 // indirect
15-
github.com/OpenPeeDeeP/depguard v1.1.0 // indirect
16-
github.com/alexkohler/prealloc v1.0.0 // indirect
17-
github.com/alingse/asasalint v0.0.11 // indirect
18-
github.com/ashanbrown/forbidigo v1.3.0 // indirect
19-
github.com/ashanbrown/makezero v1.1.1 // indirect
20-
github.com/beorn7/perks v1.0.1 // indirect
21-
github.com/bkielbasa/cyclop v1.2.0 // indirect
22-
github.com/blizzy78/varnamelen v0.8.0 // indirect
23-
github.com/bombsimon/wsl/v3 v3.3.0 // indirect
24-
github.com/breml/bidichk v0.2.3 // indirect
25-
github.com/breml/errchkjson v0.3.0 // indirect
26-
github.com/butuzov/ireturn v0.1.1 // indirect
27-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
28-
github.com/charithe/durationcheck v0.0.9 // indirect
29-
github.com/chavacava/garif v0.0.0-20220630083739-93517212f375 // indirect
30-
github.com/curioswitch/go-reassign v0.1.2 // indirect
31-
github.com/daixiang0/gci v0.6.3 // indirect
32-
github.com/davecgh/go-spew v1.1.1 // indirect
33-
github.com/denis-tingaikin/go-header v0.4.3 // indirect
34-
github.com/esimonov/ifshort v1.0.4 // indirect
35-
github.com/ettle/strcase v0.1.1 // indirect
36-
github.com/fatih/color v1.13.0 // indirect
37-
github.com/fatih/structtag v1.2.0 // indirect
38-
github.com/firefart/nonamedreturns v1.0.4 // indirect
39-
github.com/fsnotify/fsnotify v1.5.4 // indirect
40-
github.com/fzipp/gocyclo v0.6.0 // indirect
41-
github.com/go-critic/go-critic v0.6.4 // indirect
42-
github.com/go-toolsmith/astcast v1.0.0 // indirect
43-
github.com/go-toolsmith/astcopy v1.0.1 // indirect
44-
github.com/go-toolsmith/astequal v1.0.2 // indirect
45-
github.com/go-toolsmith/astfmt v1.0.0 // indirect
46-
github.com/go-toolsmith/astp v1.0.0 // indirect
47-
github.com/go-toolsmith/strparse v1.0.0 // indirect
48-
github.com/go-toolsmith/typep v1.0.2 // indirect
49-
github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b // indirect
50-
github.com/gobwas/glob v0.2.3 // indirect
51-
github.com/gofrs/flock v0.8.1 // indirect
52-
github.com/golang/protobuf v1.5.2 // indirect
53-
github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 // indirect
54-
github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a // indirect
55-
github.com/golangci/go-misc v0.0.0-20220329215616-d24fe342adfe // indirect
56-
github.com/golangci/gofmt v0.0.0-20190930125516-244bba706f1a // indirect
57-
github.com/golangci/lint-1 v0.0.0-20191013205115-297bf364a8e0 // indirect
58-
github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca // indirect
59-
github.com/golangci/misspell v0.3.5 // indirect
60-
github.com/golangci/revgrep v0.0.0-20220804021717-745bb2f7c2e6 // indirect
61-
github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 // indirect
62-
github.com/google/go-cmp v0.5.8 // indirect
63-
github.com/gordonklaus/ineffassign v0.0.0-20210914165742-4cc7213b9bc8 // indirect
64-
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
65-
github.com/gostaticanalysis/comment v1.4.2 // indirect
66-
github.com/gostaticanalysis/forcetypeassert v0.1.0 // indirect
67-
github.com/gostaticanalysis/nilerr v0.1.1 // indirect
68-
github.com/hashicorp/errwrap v1.0.0 // indirect
69-
github.com/hashicorp/go-multierror v1.1.1 // indirect
70-
github.com/hashicorp/go-version v1.6.0 // indirect
71-
github.com/hashicorp/hcl v1.0.0 // indirect
72-
github.com/hexops/gotextdiff v1.0.3 // indirect
73-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
74-
github.com/jgautheron/goconst v1.5.1 // indirect
75-
github.com/jingyugao/rowserrcheck v1.1.1 // indirect
76-
github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect
77-
github.com/julz/importas v0.1.0 // indirect
78-
github.com/kisielk/errcheck v1.6.2 // indirect
79-
github.com/kisielk/gotool v1.0.0 // indirect
80-
github.com/kulti/thelper v0.6.3 // indirect
81-
github.com/kunwardeep/paralleltest v1.0.6 // indirect
82-
github.com/kyoh86/exportloopref v0.1.8 // indirect
83-
github.com/ldez/gomoddirectives v0.2.3 // indirect
84-
github.com/ldez/tagliatelle v0.3.1 // indirect
85-
github.com/leonklingele/grouper v1.1.0 // indirect
86-
github.com/lufeee/execinquery v1.2.1 // indirect
87-
github.com/magiconair/properties v1.8.6 // indirect
88-
github.com/maratori/testpackage v1.1.0 // indirect
89-
github.com/matoous/godox v0.0.0-20210227103229-6504466cf951 // indirect
90-
github.com/mattn/go-colorable v0.1.13 // indirect
91-
github.com/mattn/go-isatty v0.0.16 // indirect
92-
github.com/mattn/go-runewidth v0.0.9 // indirect
93-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
94-
github.com/mbilski/exhaustivestruct v1.2.0 // indirect
95-
github.com/mgechev/revive v1.2.3 // indirect
96-
github.com/mitchellh/go-homedir v1.1.0 // indirect
97-
github.com/mitchellh/mapstructure v1.5.0 // indirect
98-
github.com/moricho/tparallel v0.2.1 // indirect
99-
github.com/nakabonne/nestif v0.3.1 // indirect
100-
github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354 // indirect
101-
github.com/nishanths/exhaustive v0.8.1 // indirect
102-
github.com/nishanths/predeclared v0.2.2 // indirect
103-
github.com/olekukonko/tablewriter v0.0.5 // indirect
104-
github.com/pelletier/go-toml v1.9.5 // indirect
105-
github.com/pelletier/go-toml/v2 v2.0.2 // indirect
106-
github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d // indirect
107-
github.com/pkg/errors v0.9.1 // indirect
108-
github.com/pmezard/go-difflib v1.0.0 // indirect
109-
github.com/polyfloyd/go-errorlint v1.0.2 // indirect
110-
github.com/prometheus/client_golang v1.12.1 // indirect
111-
github.com/prometheus/client_model v0.2.0 // indirect
112-
github.com/prometheus/common v0.32.1 // indirect
113-
github.com/prometheus/procfs v0.7.3 // indirect
114-
github.com/quasilyte/go-ruleguard v0.3.17 // indirect
115-
github.com/quasilyte/gogrep v0.0.0-20220120141003-628d8b3623b5 // indirect
116-
github.com/quasilyte/regex/syntax v0.0.0-20200407221936-30656e2c4a95 // indirect
117-
github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567 // indirect
118-
github.com/ryancurrah/gomodguard v1.2.4 // indirect
119-
github.com/ryanrolds/sqlclosecheck v0.3.0 // indirect
120-
github.com/sanposhiho/wastedassign/v2 v2.0.6 // indirect
121-
github.com/sashamelentyev/interfacebloat v1.1.0 // indirect
122-
github.com/sashamelentyev/usestdlibvars v1.13.0 // indirect
123-
github.com/securego/gosec/v2 v2.13.1 // indirect
124-
github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c // indirect
125-
github.com/sirupsen/logrus v1.9.0 // indirect
126-
github.com/sivchari/containedctx v1.0.2 // indirect
127-
github.com/sivchari/nosnakecase v1.7.0 // indirect
128-
github.com/sivchari/tenv v1.7.0 // indirect
129-
github.com/sonatard/noctx v0.0.1 // indirect
130-
github.com/sourcegraph/go-diff v0.6.1 // indirect
131-
github.com/spf13/afero v1.8.2 // indirect
132-
github.com/spf13/cast v1.5.0 // indirect
133-
github.com/spf13/cobra v1.5.0 // indirect
134-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
135-
github.com/spf13/pflag v1.0.5 // indirect
136-
github.com/spf13/viper v1.12.0 // indirect
137-
github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect
138-
github.com/stbenjam/no-sprintf-host-port v0.1.1 // indirect
139-
github.com/stretchr/objx v0.4.0 // indirect
140-
github.com/stretchr/testify v1.8.0 // indirect
141-
github.com/subosito/gotenv v1.4.0 // indirect
142-
github.com/sylvia7788/contextcheck v1.0.6 // indirect
143-
github.com/tdakkota/asciicheck v0.1.1 // indirect
144-
github.com/tetafro/godot v1.4.11 // indirect
145-
github.com/timakin/bodyclose v0.0.0-20210704033933-f49887972144 // indirect
146-
github.com/timonwong/logrlint v0.1.0 // indirect
147-
github.com/tomarrell/wrapcheck/v2 v2.6.2 // indirect
148-
github.com/tommy-muehle/go-mnd/v2 v2.5.0 // indirect
149-
github.com/ultraware/funlen v0.0.3 // indirect
150-
github.com/ultraware/whitespace v0.0.5 // indirect
151-
github.com/uudashr/gocognit v1.0.6 // indirect
152-
github.com/yagipy/maintidx v1.0.0 // indirect
153-
github.com/yeya24/promlinter v0.2.0 // indirect
154-
gitlab.com/bosi/decorder v0.2.3 // indirect
155-
go.uber.org/atomic v1.7.0 // indirect
156-
go.uber.org/multierr v1.6.0 // indirect
157-
go.uber.org/zap v1.17.0 // indirect
158-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
159-
golang.org/x/exp/typeparams v0.0.0-20220613132600-b0d781184e0d // indirect
160-
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
161-
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
162-
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
163-
golang.org/x/text v0.3.7 // indirect
164-
golang.org/x/tools v0.1.12 // indirect
165-
google.golang.org/protobuf v1.28.0 // indirect
166-
gopkg.in/ini.v1 v1.66.6 // indirect
167-
gopkg.in/yaml.v2 v2.4.0 // indirect
168-
gopkg.in/yaml.v3 v3.0.1 // indirect
169-
honnef.co/go/tools v0.3.3 // indirect
170-
mvdan.cc/gofumpt v0.3.1 // indirect
171-
mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed // indirect
172-
mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b // indirect
173-
mvdan.cc/unparam v0.0.0-20220706161116-678bad134442 // indirect
174-
)

.bingo/jb.mod

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT
2+
3+
go 1.18
4+
5+
require github.com/jsonnet-bundler/jsonnet-bundler v0.5.1 // cmd/jb

.bingo/jb.sum

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 h1:JYp7IbQjafoB+tBA3gMyHYHrpOtNuDiK/uB5uXxq5wM=
2+
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
3+
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 h1:s6gZFSlWYmbqAuRjVTiNNhvNRfY2Wxp9nhfyel4rklc=
4+
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137/go.mod h1:OMCwj8VM1Kc9e19TLln2VL61YJF0x1XFtfdL4JdbSyE=
5+
github.com/campoy/embedmd v1.0.0/go.mod h1:oxyr9RCiSXg0M3VJ3ks0UGfp98BpSSGr0kpiX3MzVl8=
6+
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
7+
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
8+
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
9+
github.com/fatih/color v1.13.0 h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w=
10+
github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk=
11+
github.com/jsonnet-bundler/jsonnet-bundler v0.5.1 h1:eUd6EA1Qzz73Q4NLNLOrNkMb96+6NTTERbX9lqaxVwk=
12+
github.com/jsonnet-bundler/jsonnet-bundler v0.5.1/go.mod h1:Qrdw/7mOFS2SKCOALKFfEH8gdvXJi8XZjw9g5ilpf4I=
13+
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
14+
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
15+
github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk=
16+
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
17+
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
18+
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
19+
github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=
20+
github.com/mattn/go-colorable v0.1.12 h1:jF+Du6AlPIjs2BiUiQlKOX0rt3SujHxPnksPKZbaA40=
21+
github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4=
22+
github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
23+
github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y=
24+
github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
25+
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
26+
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
27+
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
28+
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
29+
github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
30+
github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o=
31+
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
32+
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
33+
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
34+
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
35+
github.com/stretchr/testify v1.7.4/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
36+
golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
37+
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
38+
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
39+
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
40+
golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c h1:aFV+BgZ4svzjfabn8ERpuB4JI4N6/rdy1iusx77G3oU=
41+
golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
42+
gopkg.in/alecthomas/kingpin.v2 v2.2.6 h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc=
43+
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
44+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
45+
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
46+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
47+
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
48+
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
49+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
50+
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

.bingo/variables.env

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.6. DO NOT EDIT.
1+
# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.7. DO NOT EDIT.
22
# All tools are designed to be build inside $GOBIN.
33
# Those variables will work only until 'bingo get' was invoked, or if tools were installed via Makefile's Variables.mk.
44
GOBIN=${GOBIN:=$(go env GOBIN)}
@@ -14,6 +14,8 @@ DRONE="${GOBIN}/drone-v1.5.0"
1414

1515
GOLANGCI_LINT="${GOBIN}/golangci-lint-v1.49.0"
1616

17+
JB="${GOBIN}/jb-v0.5.1"
18+
1719
SWAGGER="${GOBIN}/swagger-v0.30.2"
1820

1921
WIRE="${GOBIN}/wire-v0.5.0"

.bra.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[run]
22
init_cmds = [
33
["make", "gen-go"],
4+
["make", "gen-jsonnet"],
45
["GO_BUILD_DEV=1", "make", "build-cli"],
56
["GO_BUILD_DEV=1", "make", "build-server"],
67
["./bin/grafana-server", "-packaging=dev", "cfg:app_mode=development"]
@@ -11,12 +12,14 @@ watch_dirs = [
1112
"$WORKDIR/pkg",
1213
"$WORKDIR/public/views",
1314
"$WORKDIR/conf",
15+
"$WORKDIR/devenv/dev-dashboards",
1416
]
1517
watch_exts = [".go", ".ini", ".toml", ".template.html"]
1618
ignore_files = [".*_gen.go"]
1719
build_delay = 1500
1820
cmds = [
1921
["make", "gen-go"],
22+
["make", "gen-jsonnet"],
2023
["GO_BUILD_DEV=1", "make", "build-server"],
2124
["./bin/grafana-server", "-packaging=dev", "cfg:app_mode=development"]
2225
]

0 commit comments

Comments
 (0)