diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-10 02:11:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-12 02:38:26 +0300 |
commit | d8f9061adf2d255bbe7b2b27f0fa892ef881c305 (patch) | |
tree | 8b8c5f98cbf629de468f2d994187589a8d59e48f /tools/ci/jobs/mplint.sh | |
parent | b8d27351265af33d880a18239dd91068b2d2a2bd (diff) | |
download | plus-d8f9061adf2d255bbe7b2b27f0fa892ef881c305.tar.gz plus-d8f9061adf2d255bbe7b2b27f0fa892ef881c305.tar.bz2 plus-d8f9061adf2d255bbe7b2b27f0fa892ef881c305.tar.xz plus-d8f9061adf2d255bbe7b2b27f0fa892ef881c305.zip |
add .gitlab-ci.yml and script for it.
Diffstat (limited to 'tools/ci/jobs/mplint.sh')
-rwxr-xr-x | tools/ci/jobs/mplint.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/ci/jobs/mplint.sh b/tools/ci/jobs/mplint.sh new file mode 100755 index 000000000..0ec5421e4 --- /dev/null +++ b/tools/ci/jobs/mplint.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +export CC=gcc +export CXX=g++ +export LOGFILE=mplint_po.log + +source ./tools/ci/scripts/init.sh + +aptget_install gcc g++ git \ + make autoconf automake autopoint gettext + +export CXXFLAGS="-std=gnu++11" + +git clone https://gitlab.com/manaplus/mplint.git +cd mplint +run_configure_simple +run_make +cd .. +run_mplint $* + +source ./tools/ci/scripts/exit.sh + +exit 0 |