diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-05 22:55:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-05 22:55:41 +0300 |
commit | 844745700775a1dd933f01de4563fd2d7a79b427 (patch) | |
tree | dabf9cd9173aaaef530e0a7012fb5d7bcc6c7536 /.tools | |
parent | 67b82d66becabfe337503329f575e6c2f0f7f7cb (diff) | |
download | clientdata-844745700775a1dd933f01de4563fd2d7a79b427.tar.gz clientdata-844745700775a1dd933f01de4563fd2d7a79b427.tar.bz2 clientdata-844745700775a1dd933f01de4563fd2d7a79b427.tar.xz clientdata-844745700775a1dd933f01de4563fd2d7a79b427.zip |
Add into ci scripts images format check with pngcheck.
Diffstat (limited to '.tools')
-rwxr-xr-x | .tools/init.sh | 3 | ||||
-rwxr-xr-x | .tools/pngcheck.sh | 23 |
2 files changed, 25 insertions, 1 deletions
diff --git a/.tools/init.sh b/.tools/init.sh index 0315f39a..99f85e70 100755 --- a/.tools/init.sh +++ b/.tools/init.sh @@ -2,7 +2,8 @@ function check_error { if [ "$1" != 0 ]; then - exit $result + echo "Error $1" + exit $1 fi } diff --git a/.tools/pngcheck.sh b/.tools/pngcheck.sh new file mode 100755 index 00000000..a95225e8 --- /dev/null +++ b/.tools/pngcheck.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +source ./.tools/init.sh + +aptget_update +aptget_install pngcheck + +export LOG1="pngcheck.log" +export LOG2="pngcheck2.log" + +rm ${LOG1} +rm ${LOG2} + +find . -type f -name "*.png" -exec pngcheck {} \; >${LOG1} + +grep -v "32-bit RGB+alpha, non-interlaced, " ${LOG1} >${LOG2} +export DATA=$(cat pngcheck2.log) +if [[ -n "${DATA}" ]]; then + echo "Images must be in 32 bit RGBA and non-interlanced" + echo "Wrong images format found:" + cat ${LOG2} + exit 1 +fi |