mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:10:20 -06:00
* bump mockery, add test stub for oidc_auth.go Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * use .mockery.yaml for all mocks Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * drop legacy go:generate mockery Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * align mock placement Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> --------- Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
41 lines
881 B
Makefile
41 lines
881 B
Makefile
SHELL := bash
|
|
NAME := ocis-pkg
|
|
|
|
include ../.make/recursion.mk
|
|
|
|
############ tooling ############
|
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
|
include ../.bingo/Variables.mk
|
|
endif
|
|
|
|
############ go tooling ############
|
|
include ../.make/go.mk
|
|
|
|
############ release ############
|
|
include ../.make/release.mk
|
|
|
|
############ docs generate ############
|
|
SKIP_CONFIG_DOCS_GENERATE = 1
|
|
|
|
include ../.make/docs.mk
|
|
|
|
.PHONY: docs-generate
|
|
docs-generate:
|
|
|
|
############ generate ############
|
|
include ../.make/generate.mk
|
|
|
|
.PHONY: ci-go-generate
|
|
ci-go-generate: $(MOCKERY) # CI runs ci-node-generate automatically before this target
|
|
$(MOCKERY)
|
|
|
|
.PHONY: ci-node-generate
|
|
ci-node-generate:
|
|
|
|
############ licenses ############
|
|
.PHONY: ci-node-check-licenses
|
|
ci-node-check-licenses:
|
|
|
|
.PHONY: ci-node-save-licenses
|
|
ci-node-save-licenses:
|