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 52f036f commit c8378c2Copy full SHA for c8378c2
ci/scripts/ci.sh
@@ -5,6 +5,16 @@ set -o errexit -o nounset -o pipefail -o xtrace
5
6
: "${CI_DIR:=build}"
7
8
+if command -v clang++ >/dev/null 2>&1; then
9
+ clang++ --version
10
+fi
11
+if command -v include-what-you-use >/dev/null 2>&1; then
12
+ include-what-you-use --version
13
14
+if command -v clang-tidy >/dev/null 2>&1; then
15
+ clang-tidy --version
16
17
+
18
cmake -B "$CI_DIR" "${CMAKE_ARGS[@]+"${CMAKE_ARGS[@]}"}"
19
cmake --build "$CI_DIR" -t all tests mpexamples -- "${BUILD_ARGS[@]+"${BUILD_ARGS[@]}"}"
20
ctest --test-dir "$CI_DIR" --output-on-failure
0 commit comments