-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix build for Linux/v2.9.0 #3545
Conversation
Deploying wails with Cloudflare Pages
|
Warning Rate limit exceeded@leaanthony has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 27 minutes and 21 seconds before requesting another review. How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. WalkthroughThe recent updates focus largely on expanding support to newer Ubuntu versions within the CI workflows and fixing a specific Linux-related bug in the Changes
Assessment against linked issues
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (3)
- .github/workflows/build-and-test.yml (4 hunks)
- .github/workflows/pr.yml (1 hunks)
- v2/internal/frontend/desktop/linux/window.c (1 hunks)
Files skipped from review due to trivial changes (1)
- v2/internal/frontend/desktop/linux/window.c
Additional comments not posted (6)
.github/workflows/pr.yml (2)
58-59
: Updated Go version and OS in the matrix for testing.Please ensure that all dependencies are compatible with Go 1.21 as this is a significant version change.
65-66
: Added steps to install Linux dependencies for Ubuntu 22.04 and 24.04.Ensure that all required packages are available in the repositories for these Ubuntu versions, especially
libwebkit2gtk-4.1-dev
for Ubuntu 24.04, which might differ from earlier versions.Also applies to: 69-71
.github/workflows/build-and-test.yml (4)
15-15
: Expanded OS matrix to include Ubuntu 22.04 and 24.04.This change aligns with the PR’s goal to ensure compatibility across newer Ubuntu versions. Ensure that all build and test scripts are compatible with these environments.
22-23
: Installation steps for dependencies have been tailored for each new Ubuntu version.Verify that
libwebkit2gtk-4.1-dev
is the correct package for Ubuntu 24.04 as package names can vary between Ubuntu releases.Also applies to: 26-28
44-51
: Distinct test commands have been set up for Ubuntu 24.04 using specific compile-time tags.Ensure that the
-tags webkit2_41
is correctly configured in the build system to utilize the right version of WebKitGTK for Ubuntu 24.04.
85-85
: Updated template testing matrix to include new Ubuntu versions and added specific build steps for Ubuntu 24.04.It’s crucial to test across all specified templates to ensure that there are no platform-specific issues with the new Ubuntu versions, especially with the use of different tags in the build commands for Ubuntu 24.04.
Also applies to: 119-125, 136-143
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- .github/workflows/build-and-test.yml (4 hunks)
Files skipped from review as they are similar to previous changes (1)
- .github/workflows/build-and-test.yml
Description
This PR adds a fix for compilation errors on Linux. Pipelines updated to test on both 22.04 and 24.04.
Fixes #3542
Summary by CodeRabbit
ubuntu-22.04
andubuntu-24.04
.ubuntu-latest
withubuntu-22.04
andubuntu-24.04
.1.21
in workflow configurations.