Skip to content

Commit a5f359b

Browse files
committed
Added Ubuntu 24.04
1 parent 824db71 commit a5f359b

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.github/workflows/test-docker.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
matrix:
3636
docker: [
3737
# Run slower jobs first to give them a headstart and reduce waiting time
38-
ubuntu-22.04-jammy-arm64v8,
39-
ubuntu-22.04-jammy-ppc64le,
40-
ubuntu-22.04-jammy-s390x,
38+
ubuntu-24.04-noble-arm64v8,
39+
ubuntu-24.04-noble-ppc64le,
40+
ubuntu-24.04-noble-s390x,
4141
# Then run the remainder
4242
alpine,
4343
amazon-2-amd64,
@@ -52,14 +52,15 @@ jobs:
5252
gentoo,
5353
ubuntu-20.04-focal-amd64,
5454
ubuntu-22.04-jammy-amd64,
55+
ubuntu-24.04-noble-amd64,
5556
]
5657
dockerTag: [main]
5758
include:
58-
- docker: "ubuntu-22.04-jammy-arm64v8"
59+
- docker: "ubuntu-24.04-noble-arm64v8"
5960
qemu-arch: "aarch64"
60-
- docker: "ubuntu-22.04-jammy-ppc64le"
61+
- docker: "ubuntu-24.04-noble-ppc64le"
6162
qemu-arch: "ppc64le"
62-
- docker: "ubuntu-22.04-jammy-s390x"
63+
- docker: "ubuntu-24.04-noble-s390x"
6364
qemu-arch: "s390x"
6465

6566
name: ${{ matrix.docker }}
@@ -81,8 +82,8 @@ jobs:
8182
8283
- name: Docker build
8384
run: |
84-
# The Pillow user in the docker container is UID 1000
85-
sudo chown -R 1000 $GITHUB_WORKSPACE
85+
# The Pillow user in the docker container is UID 1001
86+
sudo chown -R 1001 $GITHUB_WORKSPACE
8687
docker run --name pillow_container -v $GITHUB_WORKSPACE:/Pillow pythonpillow/${{ matrix.docker }}:${{ matrix.dockerTag }}
8788
sudo chown -R runner $GITHUB_WORKSPACE
8889

docs/installation/platform-support.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ These platforms are built and tested for every change.
4646
+----------------------------------+----------------------------+---------------------+
4747
| Ubuntu Linux 22.04 LTS (Jammy) | 3.8, 3.9, 3.10, 3.11, | x86-64 |
4848
| | 3.12, 3.13, PyPy3 | |
49-
| +----------------------------+---------------------+
50-
| | 3.10 | arm64v8, ppc64le, |
51-
| | | s390x |
49+
+----------------------------------+----------------------------+---------------------+
50+
| Ubuntu Linux 24.04 LTS (Noble) | 3.12 | x86-64, arm64v8, |
51+
| | | ppc64le, s390x |
5252
+----------------------------------+----------------------------+---------------------+
5353
| Windows Server 2016 | 3.8 | x86-64 |
5454
+----------------------------------+----------------------------+---------------------+

0 commit comments

Comments
 (0)