Skip to content
Merged
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
build: ci.yml is a dependency of cmake's configuration.
Because ci.yml has the geos version in it.
  • Loading branch information
eyal0 committed Apr 5, 2026
commit 6ef817af2fd51e439d99e1d911b9a6a439da4984
3 changes: 3 additions & 0 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ endif()
# Regenerate expected/ with tools/run_gerbv_example_test.py --regenerate-expected.
set(_pcb2gcode_ci_geos_pinned "")
set(_pcb2gcode_ci_yml "${CMAKE_SOURCE_DIR}/.github/workflows/ci.yml")
# Re-run configure when CI’s GEOS pin changes (file(READ) is not tracked by default).
set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS
"${_pcb2gcode_ci_yml}")
if(EXISTS "${_pcb2gcode_ci_yml}")
file(READ "${_pcb2gcode_ci_yml}" _pcb2gcode_ci_yml_contents)
string(
Expand Down
Loading