We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c421eb1 commit 9186637Copy full SHA for 9186637
.buildbot.sh
@@ -19,18 +19,20 @@ cmake -DCMAKE_INSTALL_PREFIX=${INST_DIR} \
19
../llvm
20
make -j `nproc` install
21
22
+# clang-format any new files that we've introduced ourselves.
23
+cd ..
24
+PATH=${INST_DIR}/bin:${PATH}
25
+sh yk_format_new_files.sh
26
+git diff --exit-code
27
+
28
# There are many test suites for LLVM:
29
# https://llvm.org/docs/TestingGuide.html
30
#
31
# This runs unit and integration tests.
32
+cd build
33
make -j `nproc` check-all
34
cd ..
35
-# clang-format any new files that we've introduced ourselves.
-PATH=${INST_DIR}/bin:${PATH}
-sh yk_format_new_files.sh
-git diff --exit-code
-
36
# FIXME The commented code below should run the `test-suite` tests, as
37
# described at https://llvm.org/docs/TestSuiteGuide.html.
38
0 commit comments