File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -180,11 +180,15 @@ pipeline {
180
180
}
181
181
182
182
stage(' Submit statistics to LNT' ) {
183
+ environment {
184
+ HOST_BUILD_DIR = " $WORKSPACE /host-compiler"
185
+ HISTORIC_BUILD_DIR = " $WORKSPACE /clang-19-build"
186
+ }
183
187
steps {
184
188
sh '''
185
189
source ./venv/bin/activate
186
190
187
- cd src/clang-13
191
+ cd src/clang-19
188
192
git tag -a -m "First Commit" first_commit 97724f18c79c7cc81ced24239eb5e883bf1398ef || true
189
193
190
194
git_desc=$(git describe --match "first_commit")
Original file line number Diff line number Diff line change 7
7
import sys
8
8
9
9
# 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" ]} '
12
12
13
13
if len (sys .argv ) != 2 :
14
14
print ("Usage: submit-lldb-statistics-to-lnt.py <path/to/stats/directory>" )
You can’t perform that action at this time.
0 commit comments