Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ pipeline {
steps {
dir('llvm-dev') {
sh """
make clean
make SRCDIR=${TOP}/llvm-project CMAKE=${CMAKE} \
THREADS= cmake build
"""
Expand All @@ -47,7 +48,7 @@ pipeline {
steps {
dir('llvm-dev') {
sh """
make check-clang check-llvm
make THREADS= check-clang check-llvm
"""
}
}
Expand All @@ -71,7 +72,7 @@ pipeline {
url: "${REPO_URL}/llvm-ve-intrinsic-test.git"
sh """
make clean
make CLANG=${TOP}/llvm-dev/install/bin/clang -j8
make CLANG=${TOP}/llvm-dev/install/bin/clang -j
./test.sh
"""
}
Expand Down