logging details on clang tools versions
This commit is contained in:
parent
5d4a97a997
commit
66f3d3ddc4
1 changed files with 12 additions and 1 deletions
13
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
13
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
|
@ -46,7 +46,18 @@ pipeline {
|
|||
currentBuild.displayName += " D${drev_id}"
|
||||
currentBuild.description = "<a href='https://reviews.llvm.org/D${drev_id}'>D${drev_id}</a>"
|
||||
}
|
||||
sh 'dpkg -l' // Report versions of the installed packages.
|
||||
// Report versions of the installed packages.
|
||||
sh '''
|
||||
echo Versions of various tools:
|
||||
echo clang --version
|
||||
clang --version
|
||||
echo clang-tidy --version
|
||||
clang-tidy --version
|
||||
echo ld.lld --version
|
||||
ld.lld --version
|
||||
dpkg -l
|
||||
'''
|
||||
|
||||
}
|
||||
}
|
||||
stage("git checkout"){
|
||||
|
|
Loading…
Reference in a new issue