ci: source ~/.cargo/env in every step so make finds cargo #6
No reviewers
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_coordinator!6
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "development_mik"
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?
Fixes the silent CI red on
development: every run bails immediately at the firstmakecall withcargo: No such file or directory. The shell exec context for each step does not auto-source~/.cargo/env. Same fix already proven on hero_archipelagos and other green repos.No behavioural change on hosts where cargo is already on PATH.
Signed-off-by: mik-tf
After the cargo_env fix unblocked the previous step, CI surfaces the real toolchain mismatch: error: rustc 1.92.0 is not supported by the following package: hero_osis_sdk@0.1.0 requires rustc 1.93 The ghcr.io/despiegk/builder image ships rustc 1.92, but the upstream hero_osis_sdk crate now requires 1.93. Adding a Setup toolchain step that runs `rustup toolchain install 1.93` mirrors the pattern used in hero_archipelagos's working CI. Signed-off-by: mik-tf