Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request, workflow_dispatch]
jobs:
build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
container: ubuntu:xenial
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
5 changes: 3 additions & 2 deletions tools/linuxdeployqt/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,11 @@ int main(int argc, char **argv)
// Ubuntu Xenial Xerus (16.04) uses glibc 2.23
// Ubuntu Bionic Beaver (18.04) uses glibc 2.27
// Ubuntu Focal Fossa (20.04) uses glibc 2.31
if (strverscmp (glcv, "2.32") >= 0) {
// Ubuntu Jammy Jellyfish (22.04) uses glibc 2.35
if (strverscmp (glcv, "2.36") >= 0) {
qInfo() << "ERROR: The host system is too new.";
qInfo() << "Please run on a system with a glibc version no newer than what comes with the oldest";
qInfo() << "currently supported mainstream distribution (Ubuntu Focal Fossa), which is glibc 2.31.";
qInfo() << "currently supported mainstream distribution (Ubuntu Jammy Jellyfish), which is glibc 2.35.";
qInfo() << "This is so that the resulting bundle will work on most still-supported Linux distributions.";
qInfo() << "For more information, please see";
qInfo() << "https://github.com/probonopd/linuxdeployqt/issues/340";
Expand Down