From 7e23f9d42fa9023eaa6e93e00201e88ac1304a11 Mon Sep 17 00:00:00 2001 From: Tobias Schmidt Date: Wed, 12 Aug 2026 01:17:18 +0000 Subject: [PATCH] Pin Umbra version Umbra was installed and started from umbradb/umbra:latest, so a new image silently changed the reported numbers and nothing re-triggered a measurement. Pinning the tag makes a version bump a change under umbra/, which re-triggers the PR automation, like #1308 did for Hyper (see #1266). --- umbra/install | 2 +- umbra/start | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/umbra/install b/umbra/install index f106ad77db..f8e10abc5c 100755 --- a/umbra/install +++ b/umbra/install @@ -4,7 +4,7 @@ set -eu sudo apt-get update -y sudo apt-get install -y docker.io postgresql-client gzip strace gcc -sudo docker pull umbradb/umbra:latest +sudo docker pull umbradb/umbra:26.08 mkdir -p data db chmod -R 777 data db diff --git a/umbra/start b/umbra/start index de2ecc72fe..e530692e3d 100755 --- a/umbra/start +++ b/umbra/start @@ -15,4 +15,4 @@ sudo docker run -d --name umbradb \ --ulimit nofile=1048576:1048576 \ --ulimit memlock=-1:-1 \ -e ASYNCIO=0 \ - umbradb/umbra:latest >/dev/null + umbradb/umbra:26.08 >/dev/null