[Scummvm-git-logs] scummvm-sites director-buildbot -> b544e64c5b9fab2d2448c71b1907f1f3078db6b3
sev-
noreply at scummvm.org
Mon Apr 3 22:30:59 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-sites' repo located at https://github.com/scummvm/scummvm-sites .
Summary:
b544e64c5b DIRECTOR-BUILDBOT: Fix beuildbot number getting
Commit: b544e64c5b9fab2d2448c71b1907f1f3078db6b3
https://github.com/scummvm/scummvm-sites/commit/b544e64c5b9fab2d2448c71b1907f1f3078db6b3
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-04-04T00:30:18+02:00
Commit Message:
DIRECTOR-BUILDBOT: Fix beuildbot number getting
Changed paths:
director/build_factory.py
diff --git a/director/build_factory.py b/director/build_factory.py
index 5dcc98c..170b163 100644
--- a/director/build_factory.py
+++ b/director/build_factory.py
@@ -4,6 +4,7 @@ import os.path
from typing import Any
from buildbot.plugins import steps, util
+from buildbot.process.properties import Property
from .env import settings
@@ -13,7 +14,7 @@ default_env: dict[str, str] = {
"SDL_VIDEODRIVER": "dummy",
"SDL_AUDIODRIVER": "dummy",
"ASAN_OPTIONS": "detect_leaks=1:abort_on_error=1:disable_coredump=0:unmap_shadow_on_exit=1",
- #"BUILD_NUMBER": str(steps.getProperty("buildnumber")),
+ "BUILD_NUMBER": str(Property("buildnumber")),
}
More information about the Scummvm-git-logs
mailing list