|
1 |
| -SOURCES = $(shell find . -name '*.go' -and -not -path "./_test_plugins" -and -not -path "./_test_plugins_fail" ) |
2 |
| -PACKAGES = $(shell go list ./...) |
3 |
| -CURRENT_VERSION = $(shell git describe --tags --always --dirty) |
4 |
| -VERSION ?= $(CURRENT_VERSION) |
5 |
| -COMMIT_HASH = $(shell git rev-parse --short HEAD) |
6 |
| -LIMIT_FDS = $(shell ulimit -n) |
7 |
| -TEST_ETCD_VERSION ?= v2.3.8 |
| 1 | +SOURCES = $(shell find . -name '*.go' -and -not -path "./_test_plugins" -and -not -path "./_test_plugins_fail" ) |
| 2 | +PACKAGES = $(shell go list ./...) |
| 3 | +CURRENT_VERSION = $(shell git describe --tags --always --dirty) |
| 4 | +VERSION ?= $(CURRENT_VERSION) |
| 5 | +COMMIT_HASH = $(shell git rev-parse --short HEAD) |
| 6 | +LIMIT_FDS = $(shell ulimit -n) |
| 7 | +TEST_ETCD_VERSION ?= v3.5.11 |
| 8 | +TEST_ETCD_CHECKSUM ?= 4fb304f384dd4d6e491e405fed8375a09ea1c6c2596b93f97cb31844202e620df160f87f18611e84f17675e7b7245e40d1aa23571ecdb507cb094ba04d378171 |
8 | 9 | TEST_PLUGINS = _test_plugins/filter_noop.so \
|
9 | 10 | _test_plugins/predicate_match_none.so \
|
10 | 11 | _test_plugins/dataclient_noop.so \
|
@@ -114,7 +115,7 @@ clean: ## clean temporary files and directories
|
114 | 115 | .PHONY: deps
|
115 | 116 | deps: ## install dependencies to run everything
|
116 | 117 | go env
|
117 |
| - ./etcd/install.sh $(TEST_ETCD_VERSION) |
| 118 | + ./etcd/install.sh $(TEST_ETCD_VERSION) $(TEST_ETCD_CHECKSUM) |
118 | 119 | @go install honnef.co/go/tools/cmd/staticcheck@latest
|
119 | 120 | @go install github.com/securego/gosec/v2/cmd/gosec@latest
|
120 | 121 | @go install golang.org/x/vuln/cmd/govulncheck@latest
|
|
0 commit comments