diff --git a/zorg/jenkins/jobs/jobs/lldb-statistics b/zorg/jenkins/jobs/jobs/lldb-statistics index ec7f7641d..4dfb455cf 100644 --- a/zorg/jenkins/jobs/jobs/lldb-statistics +++ b/zorg/jenkins/jobs/jobs/lldb-statistics @@ -180,11 +180,15 @@ pipeline { } stage('Submit statistics to LNT') { + environment { + HOST_BUILD_DIR="$WORKSPACE/host-compiler" + HISTORIC_BUILD_DIR="$WORKSPACE/clang-19-build" + } steps { sh ''' source ./venv/bin/activate - cd src/clang-13 + cd src/clang-19 git tag -a -m "First Commit" first_commit 97724f18c79c7cc81ced24239eb5e883bf1398ef || true git_desc=$(git describe --match "first_commit") diff --git a/zorg/jenkins/jobs/util/submit-lldb-statistics-to-lnt.py b/zorg/jenkins/jobs/util/submit-lldb-statistics-to-lnt.py index dfe3abb32..af87bc16e 100644 --- a/zorg/jenkins/jobs/util/submit-lldb-statistics-to-lnt.py +++ b/zorg/jenkins/jobs/util/submit-lldb-statistics-to-lnt.py @@ -7,8 +7,8 @@ import sys # Note there are fewer git commits in the monorepo than there were svn revisions. -#LLVM_REV=os.environ["GIT_DISTANCE"] -#JOB_NAME=f'{os.environ["NODE_NAME"]}_{os.environ["JOB_NAME"]}' +LLVM_REV=os.environ["GIT_DISTANCE"] +JOB_NAME=f'{os.environ["NODE_NAME"]}_{os.environ["JOB_NAME"]}' if len(sys.argv) != 2: print("Usage: submit-lldb-statistics-to-lnt.py ")