You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One build step told me to run make test so I did. #645 this came up in my search, not sure if it's related.
#!/bin/bashset -Eeuxo pipefail # https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/# Uninstall imagemagick v6
sudo apt-get purge imagemagick* -y
# Build imagemagick 7 with IMEI (https://github.com/SoftCreatR/imei)
wget https://dist.1-2.dev/imei.sh --output-document /tmp/imei.sh
sudo bash /tmp/imei.sh --use-checkinstall --build-only --force
# Install imagemagick and dependencies
sudo apt-get install /usr/local/src/imei*.deb -y
# Build + install imagick php extension
rm -rf /tmp/imagick
git clone https://github.com/Imagick/imagick /tmp/imagick
cd /tmp/imagick
phpize && ./configure
make
sudo make install
make test
TIME END 2024-04-17 14:00:58
=====================================================================
TEST RESULT SUMMARY
---------------------------------------------------------------------
Exts skipped : 0
Exts tested : 16
---------------------------------------------------------------------
Number of tests : 333 322
Tests skipped : 11 ( 3.3%) --------
Tests warned : 3 ( 0.9%) ( 0.9%)
Tests failed : 1 ( 0.3%) ( 0.3%)
Expected fail : 1 ( 0.3%) ( 0.3%)
Tests passed : 317 ( 95.2%) ( 98.4%)
---------------------------------------------------------------------
Time taken : 42 seconds
=====================================================================
=====================================================================
EXPECTED FAILED TEST SUMMARY
---------------------------------------------------------------------
Test Imagick, affineTransformImage [tests/031_Imagick_affineTransformImage_basic.phpt] XFAIL REASON: I don't understand what values are returned in which elements of getImageChannelStatistics
=====================================================================
=====================================================================
FAILED TEST SUMMARY
---------------------------------------------------------------------
Test Imagick, getImageKurtosis [tests/316_Imagick_getImageKurtosis.phpt]
=====================================================================
=====================================================================
WARNED TEST SUMMARY
---------------------------------------------------------------------
Test ImagickDraw, getDensity [tests/268_ImagickDraw_getDensity_basic.phpt] (warn: XFAIL section but test passes)
Test Imagick, GetImageChannelRange basic [tests/287_Imagick_GetImageChannelRange_basic.phpt] (warn: XFAIL section but test passes)
ImagickPixel iterator [tests/bug_73840.phpt] (warn: XFAIL section but test passes)
=====================================================================
The text was updated successfully, but these errors were encountered:
I wrote this script to build on Ubuntu 22.04
One build step told me to run
make test
so I did. #645 this came up in my search, not sure if it's related.The text was updated successfully, but these errors were encountered: