Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmarks/ycsb/runner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# benchmark. Runs as a non-root user (the Actions runner refuses to run as root).
# The registration token is supplied at runtime (never baked in); the host loop
# (run-bench-runner.sh) mints a fresh token and starts one container per job.
FROM ubuntu:24.04
FROM ubuntu:26.04

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This image cannot currently build with RUNNER_VERSION=2.334.0. Ubuntu 26.04 publishes libicu78, but that runner's bundled bin/installdependencies.sh only tries libicu76 through libicu52; when none exists, it exits 1 and the Docker build stops at line 27. Please retain Ubuntu 24.04 until the runner supports 26.04, or explicitly install the 26.04 .NET dependencies (including libicu78) and avoid/patch the incompatible helper. A lightweight CI check that builds this Dockerfile would also catch future Renovate base-image updates before they strand the benchmark runner.


ARG RUNNER_VERSION=2.334.0
ENV DEBIAN_FRONTEND=noninteractive
Expand Down
Loading