Magick: Command not found on Travis

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
asdfasdfvful
Posts: 5
Joined: 2017-05-27T15:21:47-07:00
Authentication code: 1151

Magick: Command not found on Travis

Post by asdfasdfvful »

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

Code: Select all

identify -version
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

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
However, that adds 6 minutes to my original 2 min build time.

Is there any other way of updating IM without building from source?
Post Reply