fix(ci): install Node.js in the rust job #62
No reviewers
Labels
No labels
source:analyste
source:defenseur
source:human
source:medic
status:approved
status:blocked
status:in-progress
status:needs-fix
status:ready
status:review
status:triage
type:bug
type:feature
type:infra
type:refactor
type:schema
type:security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: maximus/Simpl-Resultat#62
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/check-workflow-rust-node"
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?
Hot fix for #60.
Problem
The
rustjob incheck.yml(just merged via #61) failed on every run with:actions/checkout@v4andactions/cache@v4are JavaScript actions executed by the Forgejo runner viaact. They neednodein the container PATH, whichubuntu:22.04doesn't ship with.The
frontendjob worked fine because it installs Node before checkout. The GitHub mirror is unaffected becauseubuntu-latestships Node preinstalled.Fix
Add
nodejsto theInstall system dependenciesstep of therustjob, before anyactions/*step runs.Verification
Failed run that triggered this fix: https://git.lacompagniemaximus.com/maximus/Simpl-Resultat/actions/runs/122 — last log lines show the OCI exec failure right after Rust installation succeeds.
Once this PR is merged, the workflow will be re-triggered on
issue-46-license-commands-entitlementsto finally validate PR #56 (the original goal of #60).