Magick: Command not found on Travis
Posted: 2017-06-04T22:57:37-07:00
As the title suggests, I'm trying to use the magick command on Travis CI. The issue seems to be that I am not running an updated IM, as shows that it's ImageMagick 6.8.9-9.
My currently solution to the problem is simply to install it from source:
https://docs.travis-ci.com/user/install ... rom-Source
However, that adds 6 minutes to my original 2 min build time.
Is there any other way of updating IM without building from source?
Code: Select all
identify -version
My currently solution to the problem is simply to install it from source:
https://docs.travis-ci.com/user/install ... rom-Source
Code: Select all
#!/usr/bin/env bash
set -ex
wget https://www.imagemagick.org/download/ImageMagick-7.0.5-10.tar.gz
tar -xzvf ImageMagick-7.0.5-10.tar.gz
cd ImageMagick-7.0.5-10 && ./configure --prefix=/usr && make && sudo make install
Is there any other way of updating IM without building from source?