From e5017188ffc2bd3cd52f66edfdf979c9e4628a5d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 25 Jul 2017 21:32:24 +0300 Subject: Add checks for wrong new lines into .gitlab-ci.yml --- .gitlab-ci.yml | 10 ++++++++++ .tools/newlines.sh | 28 ++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100755 .tools/newlines.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f4a2cad6..575df15b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,6 +45,16 @@ manaplus: when: always expire_in: 3 week +newlines: + stage: test + script: + - ./.tools/newlines.sh + artifacts: + paths: + - shared + when: always + expire_in: 3 week + pages: stage: deploy script: diff --git a/.tools/newlines.sh b/.tools/newlines.sh new file mode 100755 index 00000000..64cbf7e1 --- /dev/null +++ b/.tools/newlines.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +source ./.tools/init.sh + +aptget_update +aptget_install dos2unix git-core + +export LOG1="newlines.log" + +rm ${LOG1} + +find -H . -type f -name "*.xml" -exec dos2unix {} \; >${LOG1} + +export RES=$(git diff --name-only) +if [[ -n "${RES}" ]]; then + echo "Wrong new lines detected in xml files:" + git diff --name-only + exit 1 +fi + +find -H . -type f -name "*.tmx" -exec dos2unix {} \; >>${LOG1} + +export RES=$(git diff --name-only) +if [[ -n "${RES}" ]]; then + echo "Wrong new lines detected in tmx files:" + git diff --name-only + exit 1 +fi -- cgit v1.2.3-60-g2f50