File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ pipeline {
79
79
git_desc=$(git describe --match "first_commit")
80
80
81
81
export GIT_DISTANCE=$(echo ${git_desc} | cut -f 2 -d "-")
82
+ export LLVM_REV=$(git show -q | grep "llvm-svn:" | cut -f2 -d":" | tr -d " ")
82
83
83
84
sha=$(echo ${git_desc} | cut -f 3 -d "-")
84
85
export GIT_SHA=${sha:1}
@@ -98,11 +99,16 @@ pipeline {
98
99
--runtimes="libcxx;libcxxabi;compiler-rt;libunwind" \
99
100
--compiler-flag="-Wdocumentation" \
100
101
--cmake-type=Release)
101
- '''
102
- script {
103
- def LLDB = new org.swift.LLDB()
104
- LLDB . LLDB_prepare ()
105
- }
102
+
103
+ export INSTALL_DIR=lldb-install
104
+ python3 llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake install
105
+ '''
106
+
107
+ script {
108
+ def LLDB = new org.swift.LLDB()
109
+ LLDB . LLDB_prepare (" lldb-install/bin/debugserver" )
110
+ LLDB . LLDB_prepare (" lldb-build/bin/debugserver" )
111
+ }
106
112
}
107
113
}
108
114
}
@@ -184,7 +190,6 @@ pipeline {
184
190
export INSTALL_DIR=lldb-install
185
191
186
192
cd -
187
- python3 llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake install
188
193
189
194
python3 llvm-zorg/zorg/jenkins/monorepo_build.py artifact
190
195
'''
You can’t perform that action at this time.
0 commit comments