diff --git a/.drone.star b/.drone.star index 40d6fd2d24..b0173ad8fd 100644 --- a/.drone.star +++ b/.drone.star @@ -384,7 +384,7 @@ def licenseCheck(ctx): return { "kind": "pipeline", "type": "docker", - "name": "go-license-check", + "name": "license-check", "platform": { "os": "linux", "arch": "amd64", diff --git a/Makefile b/Makefile index 5c69013061..3064c8e7fd 100644 --- a/Makefile +++ b/Makefile @@ -187,7 +187,7 @@ ci-go-check-licenses: $(GO_LICENSES) .PHONY: ci-node-check-licenses ci-node-check-licenses: @for mod in $(OCIS_MODULES); do \ - $(MAKE) --no-print-directory -C $$mod ci-node-check-licenses || exit 1; \ + echo -e "% check-license $$mod:"; $(MAKE) --no-print-directory -C $$mod ci-node-check-licenses || exit 1; \ done .PHONY: ci-go-save-licenses diff --git a/web/Makefile b/web/Makefile index 5e82de49c1..db353c12b3 100644 --- a/web/Makefile +++ b/web/Makefile @@ -38,6 +38,8 @@ pull-assets: ############ licenses ############ .PHONY: ci-node-check-licenses ci-node-check-licenses: + # TODO: check again? probably not .PHONY: ci-node-save-licenses ci-node-save-licenses: + # TODO: use saved licenses from the web release (because we bundle them)