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>2022-01-26 20:15:15 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2022-02-06 01:08:31 +0300
commit69a5933a794cf0dd22367005cb3930e446c3d8c9 (patch)
treeef44796b465959472339cc6f2ad243abce178e6d /Makefile.internal.mk
parentd4a251ae1bb492fee8af0d3d3619bdd3f5bfc1c0 (diff)
ci: add mocks-check task to validate mocks
Diffstat (limited to 'Makefile.internal.mk')
-rw-r--r--Makefile.internal.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.internal.mk b/Makefile.internal.mk
index d2340855..a3e7eb7b 100644
--- a/Makefile.internal.mk
+++ b/Makefile.internal.mk
@@ -32,3 +32,7 @@ bin/golangci-lint: .GOPATH/.ok
bin/gotestsum: .GOPATH/.ok
@test -x $@ || \
{ echo "Vendored gotestsum not found, try running 'make setup'..."; exit 1; }
+
+bin/mockgen: .GOPATH/.ok
+ @test -x $@ || \
+ { echo "Vendored mockgen not found, try running 'make setup'..."; exit 1; }