diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-11-20 17:23:59 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-11-20 17:23:59 +0100 |
commit | 28d013b704aabcb1dccd89d2596b76c45c7f1425 (patch) | |
tree | 7e4a83d3e0298bfc53dd16081b9aeb3e3fcb34b9 /tools/build-test.sh | |
parent | 5fffaf89e4ed558fc7fe3bda4763409675bae071 (diff) | |
download | weechat-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-x | tools/build-test.sh | 2 |
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 |