summaryrefslogtreecommitdiff
path: root/tools/build-test.sh
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2021-11-20 17:23:59 +0100
committerSébastien Helleu <flashcode@flashtux.org>2021-11-20 17:23:59 +0100
commit28d013b704aabcb1dccd89d2596b76c45c7f1425 (patch)
tree7e4a83d3e0298bfc53dd16081b9aeb3e3fcb34b9 /tools/build-test.sh
parent5fffaf89e4ed558fc7fe3bda4763409675bae071 (diff)
downloadweechat-28d013b704aabcb1dccd89d2596b76c45c7f1425.zip
build: add targets "changelog" and "rn" to build HTML version of ChangeLog and release notes (CMake build only)
Diffstat (limited to 'tools/build-test.sh')
-rwxr-xr-xtools/build-test.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/build-test.sh b/tools/build-test.sh
index fd6a4f87b..0653e5414 100755
--- a/tools/build-test.sh
+++ b/tools/build-test.sh
@@ -69,6 +69,8 @@ if [ "$BUILDTOOL" = "cmake" ]; then
# build with CMake
run "cmake .. -DENABLE_MAN=ON -DENABLE_DOC=ON -DENABLE_TESTS=ON ${BUILDARGS}"
run "make VERBOSE=1 -j$(nproc)"
+ run "make VERBOSE=1 changelog"
+ run "make VERBOSE=1 rn"
run "sudo make install"
run "ctest -V"
fi