Skip to content

Commit 5e2ac47

Browse files
committed
fix(lint): fix deps error
Change-Id: I7c262a864bf093de7fa09abc9e2d936e9ef52f68
1 parent 644392b commit 5e2ac47

2 files changed

Lines changed: 22 additions & 3 deletions

File tree

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ import-fmt:
101101
@gofmt -w -r 'interface{} -> any' $(GO_FILES)
102102
@find . -name "*.sh" ! \( -path "./vendor/*" -o -path "./.git/*" -o -path "./.claude/*" -o -path "./third_party/*" \) -exec shfmt -i 0 -w {} \;
103103

104-
golangci-lint:
104+
golangci-lint: mock-build
105105
@golangci-lint run -v ./... --timeout=5m --config .golangci.yaml
106106

107107
vendor:
@@ -110,8 +110,10 @@ vendor:
110110
clean:
111111
@rm -rf _output $(shell find . -type f -name "*.o")
112112

113-
gen-go:
113+
mock-build:
114114
@go generate -run "mockery.*" -x ./...
115+
116+
update-proto:
115117
@go generate -run "capnp.*" ./...
116118

117119
test: unit integration e2e

vendor/modules.txt

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,6 +1052,9 @@ github.com/google/go-cmp/cmp/internal/value
10521052
## explicit; go 1.12
10531053
github.com/google/gofuzz
10541054
github.com/google/gofuzz/bytesource
1055+
# github.com/google/pprof v0.0.0-20250317173921-a4b03ec1a45e
1056+
## explicit; go 1.23
1057+
github.com/google/pprof/profile
10551058
# github.com/google/uuid v1.6.0
10561059
## explicit
10571060
github.com/google/uuid
@@ -1112,6 +1115,7 @@ github.com/grafana/pyroscope/pkg/og/structs/sortedmap
11121115
github.com/grafana/pyroscope/pkg/og/util/arenahelper
11131116
github.com/grafana/pyroscope/pkg/og/util/serialization
11141117
github.com/grafana/pyroscope/pkg/og/util/varint
1118+
github.com/grafana/pyroscope/pkg/pprof
11151119
github.com/grafana/pyroscope/pkg/slices
11161120
github.com/grafana/pyroscope/pkg/tenant
11171121
github.com/grafana/pyroscope/pkg/util
@@ -1185,7 +1189,9 @@ github.com/json-iterator/go
11851189
# github.com/klauspost/compress v1.17.11
11861190
## explicit; go 1.21
11871191
github.com/klauspost/compress
1192+
github.com/klauspost/compress/flate
11881193
github.com/klauspost/compress/fse
1194+
github.com/klauspost/compress/gzip
11891195
github.com/klauspost/compress/huff0
11901196
github.com/klauspost/compress/internal/cpuinfo
11911197
github.com/klauspost/compress/internal/snapref
@@ -1317,10 +1323,21 @@ github.com/prometheus/procfs/internal/util
13171323
github.com/prometheus/procfs/sysfs
13181324
# github.com/prometheus/prometheus v0.302.1
13191325
## explicit; go 1.22.7
1320-
github.com/prometheus/procfs/xfs
13211326
github.com/prometheus/prometheus/model/exemplar
13221327
github.com/prometheus/prometheus/model/histogram
13231328
github.com/prometheus/prometheus/model/labels
1329+
github.com/prometheus/prometheus/model/metadata
1330+
github.com/prometheus/prometheus/model/timestamp
1331+
github.com/prometheus/prometheus/model/value
1332+
github.com/prometheus/prometheus/promql/parser
1333+
github.com/prometheus/prometheus/promql/parser/posrange
1334+
github.com/prometheus/prometheus/storage
1335+
github.com/prometheus/prometheus/tsdb/chunkenc
1336+
github.com/prometheus/prometheus/tsdb/chunks
1337+
github.com/prometheus/prometheus/tsdb/errors
1338+
github.com/prometheus/prometheus/tsdb/fileutil
1339+
github.com/prometheus/prometheus/util/annotations
1340+
github.com/prometheus/prometheus/util/strutil
13241341
# github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec
13251342
## explicit; go 1.12
13261343
github.com/remyoudompheng/bigfft

0 commit comments

Comments
 (0)