fix(ci): run Check on the dev runner label #45
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/RUS-8-check-dev-runner-label"
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?
The check job compiles Rust natively on the runner (fmt, clippy, build and test across both feature sets), but ran on RUNS_ON_OPENSUSE_BASE_LATEST, whose image ships cargo and rustc with no C toolchain. Any crate with a build script has to link one executable, so a cold-cache run fails with
error: linkerccnot found. Switch the job to RUNS_ON_OPENSUSE_DEV_LATEST, whose image carries cc/gcc/ld plus glibc and OpenSSL headers.Classify the other two workflows and record the reason inline: build-oci-image.yml compiles entirely inside docker buildx and create-release.yml only runs git, nu and an HTTP call, so both stay on the base label.
#RUS-8