Skip to content
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

For Wayland, run testbed on Ubuntu 24.04 #2893

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,14 +232,15 @@ jobs:

- backend: "linux-wayland"
platform: "linux"
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
# The package list should be the same as in tutorial-0.rst, and the BeeWare
# tutorial, plus mutter to provide a window manager, and libjpeg-dev for Pillow.
# tutorial, plus mutter to provide a window manager.
pre-command: |
sudo apt update -y
sudo apt install -y --no-install-recommends \
mutter pkg-config python3-dev libgirepository1.0-dev libcairo2-dev \
gir1.2-webkit2-4.1 gir1.2-xapp-1.0
gir1.2-webkit2-4.1 gir1.2-xapp-1.0 \
libjpeg-dev # remove once the version of Pillow has a wheel on PyPI for Python 3.12
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rmartin16 I came across this line just now and was wondering if the dependency can be removed now? At the time of this PR, Pillow was pinned to 9.2.0 in the testbed, but it's pinned to 11.00.00 now, which has 3.12 wheels on PyPI.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes - we should be able to remove this one now.


# Start Virtual X Server
echo "Start X server..."
Expand Down Expand Up @@ -333,6 +334,8 @@ jobs:
python-version: "3.10"

- name: Install Dependencies
env:
PIP_BREAK_SYSTEM_PACKAGES: "1"
run: |
${{ matrix.pre-command }}
# Use the development version of Briefcase
Expand Down
1 change: 1 addition & 0 deletions changes/2893.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
For Wayland, the testbed runs on Ubuntu 24.04 instead of Ubuntu 22.04.
Loading