Skip to content

Commit 92ecab1

Browse files
authored
Use Resolute (#8)
Co-authored-by: Andrew Murray <radarhere@users.noreply.github.com>
1 parent 795760e commit 92ecab1

22 files changed

Lines changed: 30 additions & 30 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
# Run slower jobs first to give them a headstart and reduce waiting time
2222
- "ubuntu-24.04-noble-ppc64le"
2323
- "ubuntu-24.04-noble-s390x"
24-
- "ubuntu-26.04-plucky-ppc64le"
25-
- "ubuntu-26.04-plucky-s390x"
24+
- "ubuntu-26.04-resolute-ppc64le"
25+
- "ubuntu-26.04-resolute-s390x"
2626
# test image for manylinux-wheel build
2727
- "fedora-43-amd64"
2828
# Then run the remainder
@@ -37,7 +37,7 @@ jobs:
3737
- "ubuntu-22.04-jammy-amd64"
3838
- "ubuntu-22.04-jammy-amd64-valgrind"
3939
- "ubuntu-24.04-noble-amd64"
40-
- "ubuntu-26.04-plucky-amd64"
40+
- "ubuntu-26.04-resolute-amd64"
4141
# has a dependency on the test image
4242
- "manylinux_2_28-wheel-build"
4343
include:
@@ -51,13 +51,13 @@ jobs:
5151
docker-args: "--platform linux/s390x"
5252
- image: "ubuntu-24.04-noble-arm64v8"
5353
os: "ubuntu-24.04-arm"
54-
- image: "ubuntu-26.04-plucky-ppc64le"
54+
- image: "ubuntu-26.04-resolute-ppc64le"
5555
qemu-arch: "ppc64le"
5656
docker-args: "--platform linux/ppc64le"
57-
- image: "ubuntu-26.04-plucky-s390x"
57+
- image: "ubuntu-26.04-resolute-s390x"
5858
qemu-arch: "s390x"
5959
docker-args: "--platform linux/s390x"
60-
- image: "ubuntu-26.04-plucky-arm64v8"
60+
- image: "ubuntu-26.04-resolute-arm64v8"
6161
os: "ubuntu-24.04-arm"
6262

6363
steps:

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ TARGETS = \
1111
manylinux_2_28-wheel-build \
1212
ubuntu-22.04-jammy-amd64 \
1313
ubuntu-24.04-noble-amd64 \
14+
ubuntu-26.04-resolute-amd64 \
1415
ubuntu-22.04-jammy-amd64-valgrind \
1516
ubuntu-24.04-noble-arm64v8 \
1617
ubuntu-24.04-noble-ppc64le \
1718
ubuntu-24.04-noble-s390x \
18-
ubuntu-26.04-plucky-amd64 \
19-
ubuntu-26.04-plucky-arm64v8 \
20-
ubuntu-26.04-plucky-ppc64le \
21-
ubuntu-26.04-plucky-s390x
19+
ubuntu-26.04-resolute-arm64v8 \
20+
ubuntu-26.04-resolute-ppc64le \
21+
ubuntu-26.04-resolute-s390x
2222

2323
BUILDDIRS = $(TARGETS:%=build-%)
2424
PUSHDIRS = $(TARGETS:%=push-%)

ubuntu-26.04-plucky-amd64/update.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

ubuntu-26.04-plucky-arm64v8/update.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

ubuntu-26.04-plucky-ppc64le/update.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

ubuntu-26.04-plucky-s390x/update.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:plucky
1+
FROM ubuntu:resolute
22

33
RUN apt-get -qq update \
44
&& DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \
@@ -49,7 +49,7 @@ RUN useradd pillow \
4949
ARG PIP_DISABLE_PIP_VERSION_CHECK=1
5050
ARG PIP_NO_CACHE_DIR=1
5151

52-
RUN virtualenv -p /usr/bin/python3.13 --system-site-packages /vpy3 \
52+
RUN virtualenv -p /usr/bin/python3.14 --system-site-packages /vpy3 \
5353
&& /vpy3/bin/pip install --upgrade pip \
5454
&& /vpy3/bin/pip install olefile pyside6 pytest pytest-cov pytest-timeout \
5555
&& chown -R pillow:pillow /vpy3
@@ -63,4 +63,4 @@ ENV FORCE_COLOR=1
6363
USER pillow
6464
CMD ["depends/test.sh"]
6565

66-
#docker run -v $GITHUB_WORKSPACE:/Pillow pythonpillow/ubuntu-26.04-plucky-amd64
66+
#docker run -v $GITHUB_WORKSPACE:/Pillow pythonpillow/ubuntu-26.04-resolute-amd64
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
docker pull ubuntu:resolute

0 commit comments

Comments
 (0)