Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2021-11-18 21:58:12 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2022-01-24 02:37:36 +0300
commitc0b44c8596782c02f67a6499add223e7ed0abde9 (patch)
treeb81d777bb5f3014e9264c2e892d5b9b718c022cd /Makefile.build.mk
parent62c7b90f94daf7e64f1f41fa61a5c4a6f8fda4a6 (diff)
refactor: migrate client stub to mockgen
Diffstat (limited to 'Makefile.build.mk')
-rw-r--r--Makefile.build.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.build.mk b/Makefile.build.mk
index 3202b0de..cdd2f295 100644
--- a/Makefile.build.mk
+++ b/Makefile.build.mk
@@ -17,6 +17,7 @@ cisetup: .GOPATH/.ok
generate-mocks: .GOPATH/.ok
$Q bin/mockgen -source=internal/interface.go -destination=internal/mocks/mocks.go -package=mocks
$Q bin/mockgen -source=internal/source/source.go -destination=internal/mocks/source.go -package=mocks
+ $Q bin/mockgen -source=internal/mocks/client_stub.go -destination=internal/mocks/client.go -package=mocks
build: .GOPATH/.ok
$Q GOBIN=$(CURDIR)/bin go install $(if $V,-v) $(VERSION_FLAGS) -tags "${GO_BUILD_TAGS}" -buildmode exe $(IMPORT_PATH)