aboutsummaryrefslogtreecommitdiff
path: root/scripts/ci/doxygen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ci/doxygen.sh')
-rwxr-xr-xscripts/ci/doxygen.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/ci/doxygen.sh b/scripts/ci/doxygen.sh
deleted file mode 100755
index e8972b00b..000000000
--- a/scripts/ci/doxygen.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-set -e
-
-export TARGET_ARCH=x86_64-linux-gnu
-if [ "${CC#clang}" != "${CC}" ] ; then
- export CXX="clang++"
-fi
-
-exec "$(dirname "$0")"/build.sh
-make doxygen-doc 2>&1 |tee doxygen.log
-fgrep -rq warning ./doxygen.log
-if [ $? -eq 0 ]; then
- exit -1
-else
- exit 0
-fi
-