-
Notifications
You must be signed in to change notification settings - Fork 28
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
Add arm64v8, ppc64le, s390x images of ubuntu:focal using aptman/qus #98
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couple of small suggestions
Dockerfiles updated to match the #96 version. |
Thanks!
So this is failing until python-pillow/Pillow#5088 is merged (needs test changes from there), but python-pillow/Pillow#5088 is also failing until this is merged (needs images pushed from here). Is that right? Can we split things up so we can merge and keep things green? |
From python-pillow/Pillow#5088: Speed comparison (approximate)
*: The ppc64le and s390x image builds currently fail a bit early due to new test failures, the install time will be slightly longer. Thanks for the timings. They're not too bad, per repo, and definitely worth trying out. And this repo CI doesn't need to run as often as the main Pillow one. We could use a technique we used on Travis to help speed up the builds as a whole. The GHA docs say:
So we can kick off the slow ones first and make better use of idle parallel jobs for the quick ones, so we're not waiting around for the slow ones to finish. diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 0bc5563..46ad119 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -12,6 +12,11 @@ jobs:
matrix:
target: [ "stable", "latest" ]
image:
+ # Run slower jobs first to give them a headstart and reduce waiting time
+ - "ubuntu-20.04-focal-arm64v8"
+ - "ubuntu-20.04-focal-ppc64le"
+ - "ubuntu-20.04-focal-s390x"
+ # Then run the remainder
- "alpine"
- "amazon-2-amd64"
- "arch"
@@ -22,9 +27,6 @@ jobs:
- "fedora-33-amd64"
- "ubuntu-18.04-bionic-amd64"
- "ubuntu-20.04-focal-amd64"
- - "ubuntu-20.04-focal-arm64v8"
- - "ubuntu-20.04-focal-ppc64le"
- - "ubuntu-20.04-focal-s390x" |
That's what I thought, but I just remembered there is also another problem. The "stable" jobs here will continue failing until the next release, and since the image push here is conditional on "stable" success, python-pillow/Pillow#5088 won't succeed until then either. Would it make sense to change it to look at the "latest" run instead? That would also let the
Sure, the main repo PR can be split into adding xfail markers first and adding the new jobs second. Edit: See python-pillow/Pillow#5091 for the first part fixing the tests in the "latest" jobs. |
Co-authored-by: Hugo van Kemenade <[email protected]>
Or we could update the Pillow submodule here to point to current Pillow A more cautious alternative would be to patch the test changes onto 8.0.1 (in a temporary branch), and update the submodule to point to that instead. @radarhere What do you think? |
How about this - I've created a temporary branch here, https://github.com/python-pillow/docker-images/tree/qus (if I remember, I'll remove it sometime), to just push the new images to docker, leaving all the existing images unmodified. I've restarted python-pillow/Pillow#5088, so that now passes apart from coverage. From there, the simplest thing would seem to be to wait three weeks until 8.1.0 to merge this in. Sound good? |
That seems reasonable to me, but see my comment on the commit 43e252e#r45093209 I would instead use |
Ok, I've updated Pillow in the branch to use the version from python-pillow/Pillow#5088 and restored tests. The docker images have been updated, and I've rerun the Pillow PR jobs. |
Now that the stable builds have been updated to 8.1.0, there are no failures anymore. |
Co-authored-by: Andrew Murray <[email protected]>
Are we good here? |
We're good, thanks! |
For python-pillow/Pillow#5028 (comment). Companion to python-pillow/Pillow#5088.
Add arm64v8, ppc64le, s390x images of ubuntu:focal using aptman/qus.
Images will fail to push until python-pillow/Pillow#5088 is merged due to new failures (libtiff was previously untested on big-endian, now exposes new failures).
These images are the same as
ubuntu-20.04-focal-amd64
but on different architectures and withlibimagequant-dev
added.More information is in python-pillow/Pillow#5088.
Building all images locally now requires running
docker run --rm --privileged aptman/qus -s -- -p
or similar first.