ci: add libeigen3-dev to evaluator job to fix planning_node build#41
Merged
Conversation
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job evaluator
ci: add libeigen3-dev to evaluator job to fix planning_node build
Jul 11, 2026
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.
The
evaluatorCI job was failing becauselibplanning_node.sowas never built, causing the entire planning→control chain to be absent at runtime (0 Hz onplanning/trajectory,control/raw_cmd,control/cmd; missing topology edges; collision detected).Root cause
libeigen3-devwas missing from the CI install step. The dependency chain:CMakeLists.txt:find_package(Eigen3)fails →FLOWENGINE_HAVE_EIGEN=FALSEfrenet_planner+frenet_bridgestatic libs are gated onFLOWENGINE_HAVE_EIGENmodules/adas_nodes/CMakeLists.txt:find_library(FRENET_BRIDGE ...)finds nothing →planning_nodetarget silently disabledflow_launchercan'tdlopenthe planning plugin → no planning → no control → collision → all FAILChanges
.github/workflows/ci.yml: Addlibeigen3-devto theevaluatorandintegration-testjob install steps (both jobs buildmodules/adas_nodesplugins).gitignore: Addbuild_*/pattern alongside existingbuild-*/to cover underscore-named local build directories