Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ verify-origin:
hack/verify-jsonformat.sh
hack/verify-generated.sh
hack/verify-tls-ownership.sh
.PHONY: verify-origin
verify: verify-origin
.PHONY: verify-origin verify
verify: verify-origin verify-apm
Comment thread
coderabbitai[bot] marked this conversation as resolved.

# Update all generated artifacts.
#
Expand Down Expand Up @@ -114,9 +114,10 @@ test: test-tools
$(call add-bindata,bindata,-ignore ".*\.(go|md)$$$$" examples/db-templates examples/image-streams examples/sample-app examples/quickstarts/... examples/hello-openshift examples/jenkins/... examples/quickstarts/cakephp-mysql.json test/extended/testdata/... e2echart,testextended,testdata,test/extended/testdata/bindata.go)

# Requires uv (installed in devcontainer). Regenerates CLAUDE.md, AGENTS.md, etc.
_uvx_env = $(if $(filter true,$(CI)),UV_CACHE_DIR=/tmp/uv-cache UV_TOOL_DIR=/tmp/uv-tools)
apm:
uvx --from apm-cli@0.13.0 apm install
uvx --from apm-cli@0.13.0 apm compile
$(_uvx_env) uvx --from apm-cli@0.13.0 apm install
$(_uvx_env) uvx --from apm-cli@0.13.0 apm compile
.PHONY: apm

verify-apm: apm
Expand Down