ci: bump Linux runners and Docker base image to ubuntu 24.04#7905
Merged
Conversation
dfx 0.32.0 is built against glibc 2.38/2.39, but ubuntu-22.04 only ships glibc 2.35, so linux jobs fail with `version GLIBC_2.39 not found`. Mirrors dfinity/snsdemo#595.
The reproducible-build image installs dfx 0.32.0, which needs glibc 2.38/2.39; ubuntu:22.04 only ships glibc 2.35. node is still pinned via `n` from .volta.node, so the build toolchain is unchanged otherwise.
2 tasks
|
✅ No security or compliance issues detected. Reviewed everything up to ea54855. Security Overview
Detected Code Changes
|
ubuntu-24.04 renders fonts slightly differently than 22.04, so the neuron-details and neurons-table baselines needed updating.
bjoernek
approved these changes
Jun 10, 2026
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.
Motivation
The upcoming
dfx 0.32.0(used by the nextsnsdemorelease — dfinity/snsdemo#594) is built against glibc 2.38/2.39, butubuntu-22.04only ships glibc 2.35, so any job that installs dfx 0.32.0 fails withversion 'GLIBC_2.39' not found.This PR moves the Linux toolchain to
ubuntu-24.04(glibc 2.39) as a prerequisite, so the dfx bump (#7903) can land cleanly. snsdemo did the same in dfinity/snsdemo#595.This change is safe to merge on its own with the current
dfx 0.31.0.Changes
runs-on: ubuntu-22.04(and theosmatrix inchecks.yml) toubuntu-24.04.Dockerfilebase images fromubuntu:22.04toubuntu:24.04. node is still pinned vianfrom.volta.node, so the build toolchain is otherwise unchanged.snsdemo_snapshot_ubuntu-22.04.tar.xzartifact name instart_dfx_snapshotuntouched — it tracksSNSDEMO_RELEASE, which still publishes theubuntu-22.04snapshot asset.Tests
Todos