From: Petr Štetiar Date: Mon, 15 May 2023 06:53:58 +0000 (+0200) Subject: buildmaster: fix unpinned buildbot package version X-Git-Tag: v2~4 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=f8ad1d16e86745e60d3cd93b87670ca188dd9735;p=buildbot.git buildmaster: fix unpinned buildbot package version It seems, that current pip3 install pinning doesnt work properly as it can result in the following package versions installation: buildbot-3.6.1 buildbot-console-view-3.5.0 buildbot-grid-view-3.5.0 buildbot-waterfall-view-3.5.0 buildbot-worker-3.5.0 buildbot-www-3.5.0 So lets pin the buildbot package itself to BUILDBOT_VERSION as well. References: https://gitlab.com/openwrt/buildbot/-/jobs/3324049571#L1158 Signed-off-by: Petr Štetiar --- diff --git a/docker/buildmaster/Dockerfile b/docker/buildmaster/Dockerfile index b2134ce..9e939d3 100644 --- a/docker/buildmaster/Dockerfile +++ b/docker/buildmaster/Dockerfile @@ -30,6 +30,7 @@ RUN \ RUN pip3 install -U pip RUN \ pip3 install \ + "buildbot=$BUILDBOT_VERSION" \ "buildbot-www==$BUILDBOT_VERSION" \ "buildbot-waterfall-view==$BUILDBOT_VERSION" \ "buildbot-console-view==$BUILDBOT_VERSION" \