diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-06 19:19:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-06 19:19:19 +0300 |
commit | e84760c24b479ae735cc64e72cd4a42551fba7a8 (patch) | |
tree | f4fdfb58ee4f41919fd4bf73f1745f29c4cfaecc /tools | |
parent | bcdbc39b6efe7391866c81ef82a2e9358b6c3ff4 (diff) | |
download | plus-e84760c24b479ae735cc64e72cd4a42551fba7a8.tar.gz plus-e84760c24b479ae735cc64e72cd4a42551fba7a8.tar.bz2 plus-e84760c24b479ae735cc64e72cd4a42551fba7a8.tar.xz plus-e84760c24b479ae735cc64e72cd4a42551fba7a8.zip |
Add ci test for image icc profiles.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/ci/jobs/imagemagiccheck.sh | 20 | ||||
-rwxr-xr-x | tools/ci/scripts/icccheckfile.sh | 7 |
2 files changed, 27 insertions, 0 deletions
diff --git a/tools/ci/jobs/imagemagiccheck.sh b/tools/ci/jobs/imagemagiccheck.sh new file mode 100755 index 000000000..3d7476868 --- /dev/null +++ b/tools/ci/jobs/imagemagiccheck.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +source ./tools/ci/scripts/init.sh + +aptget_install imagemagick + +export LOG="logs/icccheck.log" + +mkdir logs +rm ${LOG} + +find $DIR -type f -name "*.png" -exec ./tools/ci/scripts/icccheckfile.sh {} \; >${LOG} +check_error $? + +export RES=$(cat ${LOG}) +if [[ -n "${RES}" ]]; then + echo "Detected icc profiles" + cat ${LOG} + exit 1 +fi diff --git a/tools/ci/scripts/icccheckfile.sh b/tools/ci/scripts/icccheckfile.sh new file mode 100755 index 000000000..5dfd2f80f --- /dev/null +++ b/tools/ci/scripts/icccheckfile.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +identify -verbose $1 | grep profile >/dev/null + +if [ "$?" == 0 ]; then + echo "ICC profile found for image $1" +fi |