-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adopt Ubuntu 24.04 image in GitHub Actions test workflow #161
Comments
I tried to install imagemagick on ubuntu 24.04 using docker.
Here,
return none. However
A fix I had thought would've been to create a symlink.
This makes Adding some references that I used:
|
We're accessing imagemagick via Wand which provides the ctype bindings for Python. |
GitHub Actions is transitioning to a new runner image based on Ubuntu 24.04. When this image is used, the testsuite fails because there are issues with the Wand / ImageMagick integration. Expand the details below to see a full copy of the test log from GitHub Actions.
All our previous runs were using the Ubuntu 22.04 runner which had no issues.
We must figure out what difference is causing the issue so we can adopt the Ubuntu 24.04 image. I already know the 24.04 image does not have ImageMagick installed by default, but
apt install imagemagick
results in the testsuite failure above.Fortunately, the folks at GitHub have quite good documentation about what's installed in their images. Might be helpful.
See also #160
The text was updated successfully, but these errors were encountered: