fix(build): repoint stale Makefile targets to v2/ and archive/v1/#1201
Merged
Conversation
The root Makefile still referenced pre-reorg paths that no longer exist, so the documented build/test/run entrypoints were all broken: - rust-port/wifi-densepose-rs/ -> v2/ (build-rust, build-wasm[-mat], test-rust, bench, clean cargo step) - v1.src.api.main -> archive.v1.src.api.main (run-api, run-api-dev) test-rust now uses the documented `--no-default-features` invocation (the proven-passing, GPU-free path). Verified: `cd v2 && cargo test --workspace --no-default-features --no-run` compiles the full workspace clean. Surfaced during a metaharness review (the broken root build entrypoint is why genome reported build:none / publish_readiness 0.40 at the repo root). Co-Authored-By: claude-flow <ruv@ruv.net> Claude-Session: https://claude.ai/code/session_01AgpTcBLRJ32hUsKWxDXf36
github-actions Bot
pushed a commit
to flaxguo/wifi-densepose
that referenced
this pull request
Jun 28, 2026
… archive/v1/ (ruvnet#1201) The root Makefile still referenced pre-reorg paths that no longer exist, so the documented build/test/run entrypoints were all broken: - rust-port/wifi-densepose-rs/ -> v2/ (build-rust, build-wasm[-mat], test-rust, bench, clean cargo step) - v1.src.api.main -> archive.v1.src.api.main (run-api, run-api-dev) test-rust now uses the documented `--no-default-features` invocation (the proven-passing, GPU-free path). Verified: `cd v2 && cargo test --workspace --no-default-features --no-run` compiles the full workspace clean. Surfaced during a metaharness review (the broken root build entrypoint is why genome reported build:none / publish_readiness 0.40 at the repo root). Claude-Session: https://claude.ai/code/session_01AgpTcBLRJ32hUsKWxDXf36 1a04929
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Found during a metaharness review: the root
Makefile's build/test/run targets pointed at pre-reorg paths that no longer exist, so they all failed:build-rust,build-wasm,build-wasm-mat,test-rust,bench,cleanrust-port/wifi-densepose-rs/v2/run-api,run-api-devv1.src.api.mainarchive.v1.src.api.maintest-rustalso now uses the documented--no-default-features(GPU-free, proven-passing) invocation.Verified:
cd v2 && cargo test --workspace --no-default-features --no-runcompiles the full workspace clean.Note: this is a genuine broken-entrypoint fix. It does not change the metaharness root genome (which keys build detection off manifests at the scanned root, not Makefile contents) — accurate per-subproject scoring is
metaharness score v2→ rust, compileConfidence 90.🤖 Generated with claude-flow