bug: configure.sh fails with hardcoded stale dependency versions #74
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_compute#74
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
scripts/configure.shhas hardcoded versions for dependencies that fall behind the actual releases:my_hypervisorhardcoded tov0.1.2— release doesn't exist anymore, current isv0.1.4cloud-hypervisorhardcoded tov43.0— current isv50.0hero_prochardcoded tov0.4.4— happens to be current but will driftThis causes
make configureto fail:Root Cause
Versions are hardcoded as bash defaults (
${MY_HYPERVISOR_VERSION:-v0.1.2}) instead of being fetched from the central config repo atgit.ourworld.tf/lhumina_code/hero_compute_config. Theinstall.shscript already uses the central config correctly —configure.shwas never updated to match.Fix
Fetch versions from the central config TOML at startup, same as
install.shdoes.PR
#73
Done
#62