Skip to content

Commit 1904664

Browse files
committed
[zorg][lldb-statistics] Correct LNT submission directory
1 parent 81e1b60 commit 1904664

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

zorg/jenkins/jobs/jobs/lldb-statistics

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,15 @@ pipeline {
180180
}
181181

182182
stage('Submit statistics to LNT') {
183+
environment {
184+
HOST_BUILD_DIR="$WORKSPACE/host-compiler"
185+
HISTORIC_BUILD_DIR="$WORKSPACE/clang-19-build"
186+
}
183187
steps {
184188
sh '''
185189
source ./venv/bin/activate
186190
187-
cd src/clang-13
191+
cd src/clang-19
188192
git tag -a -m "First Commit" first_commit 97724f18c79c7cc81ced24239eb5e883bf1398ef || true
189193
190194
git_desc=$(git describe --match "first_commit")

zorg/jenkins/jobs/util/submit-lldb-statistics-to-lnt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import sys
88

99
# Note there are fewer git commits in the monorepo than there were svn revisions.
10-
#LLVM_REV=os.environ["GIT_DISTANCE"]
11-
#JOB_NAME=f'{os.environ["NODE_NAME"]}_{os.environ["JOB_NAME"]}'
10+
LLVM_REV=os.environ["GIT_DISTANCE"]
11+
JOB_NAME=f'{os.environ["NODE_NAME"]}_{os.environ["JOB_NAME"]}'
1212

1313
if len(sys.argv) != 2:
1414
print("Usage: submit-lldb-statistics-to-lnt.py <path/to/stats/directory>")

0 commit comments

Comments
 (0)