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 | |
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.
-rw-r--r-- | .gitlab-ci.yml | 11 | ||||
-rwxr-xr-x | tools/ci/jobs/imagemagiccheck.sh | 20 | ||||
-rwxr-xr-x | tools/ci/scripts/icccheckfile.sh | 7 |
3 files changed, 38 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d2c16f3ef..788f5e08f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -147,6 +147,17 @@ pngcheck: when: on_failure expire_in: 3 week +icccheck: + stage: prebuild + script: + - ./tools/ci/jobs/imagemagiccheck.sh + image: debian:unstable + artifacts: + paths: + - logs + when: on_failure + expire_in: 3 week + # tests gcc-5_sanitize_tests: 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 |