Skip to content

Commit cf28094

Browse files
[ProfCheck] Fix paths for profcheck annotated script
Buildbot does the checkout in BUILDBOT_ROOT/llvm-project and then does the build in BUILDBOT_ROOT/build. Make the script reflect this.
1 parent 6d4ded3 commit cf28094

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

zorg/buildbot/builders/annotated/profcheck.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22

33
set -ex
44

5-
rm -rf build
6-
mkdir build
7-
cd build
8-
95
echo @@@CMake@@@
106

117
cmake -GNinja \
@@ -15,9 +11,10 @@ cmake -GNinja \
1511
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache \
1612
-DLLVM_LIT_ARGS='--exclude-xfail' \
1713
-DLLVM_ENABLE_PROFCHECK=ON \
18-
../llvm
14+
../llvm-project/llvm
1915

2016
echo @@@Ninja@@@
2117

2218
export LIT_XFAIL="$(cat ../llvm/utils/profcheck-xfail.txt | tr '\n' ';')"
2319
ninja check-llvm
20+

0 commit comments

Comments
 (0)