@@ -10,7 +10,9 @@ from collections import defaultdict
import datetime
import semver
-GIT_REPO = "~/git/mirror/yocto-docs"
+GIT_REPO = sys.argv[1]
+
+print(f"Reading tag information in {GIT_REPO}")
SUPPORTED_RELEASES = {
"yocto-4.0": "LTS until Apr. 2026",
@@ -16,7 +16,7 @@ scriptdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
dest=${DEST:-docs@docs.yoctoproject.org:dashboard/}
cd $builddir
-$scriptdir/release-parser.py
+$scriptdir/release-parser.py $builddir/yocto-docs
$scriptdir/layer-parser.py
curl --silent --output $scriptdir/dashboard/testresults.json https://git.yoctoproject.org/yocto-testresults/plain/oeselftest/reproducible/qemux86-64/testresults.json
Add an argument to release-parser.py to pass the yocto-docs repository, and pass it from run-dashboard-index. Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> --- scripts/release-parser.py | 4 +++- scripts/run-dashboard-index | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-)