👷 ci: update Ubuntu runner to 24.04 - #234
Merged
SigureMo merged 1 commit intoAug 5, 2026
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
libtinfo5bootstrap, which is unavailable in Ubuntu 24.04llvm21-1pairing and the currentactions/checkout@v7/actions/cache@v6actionsWhy #193 is blocked
#193 only changes the runner from Ubuntu 22.04 to 24.04. Its failing job reaches the Ubuntu 24.04 image and completes checkout, then exits with apt status 100 because
libtinfo5cannot be located. Rustup, LLVM installation, linking, and tests never run, so the observed failure is package availability rather than a Rust, linker/runtime, Actions, or runner-image-EOL failure.The manual
libtinfo5install was added for an older prebuilt LLVM setup. rcalc now installs LLVM 21 from apt.llvm.org's native Noble repository; itsllvm-21-devpackage uses Noble's current ncurses development dependency instead. Removing the obsolete prerequisite lets the existing LLVM 21.1 / inkwell 0.9.0 configuration run directly on Ubuntu 24.04.This incorporates #193's runner update together with its missing compatibility fix. Once merged, #193's one-line change is redundant and can be closed rather than merged separately.
Validation
actionlint .github/workflows/rcalc-test.ymlcargo fmt --all -- --checkcargo test --release— 20 passedLLVM_SYS_211_PREFIX=/opt/homebrew/opt/llvm@21 cargo test --features="jit" --releasewith LLVM 21.1.8 — 24 passedllvm21-1featureThe repository has no Dockerfile or other container build definition to update. The pull-request workflow run is the authoritative Ubuntu 24.04 end-to-end validation.