-
Notifications
You must be signed in to change notification settings - Fork 4
[PWCI] "[v4] event/cnxk: fix offload flags" #497
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
base: main
Are you sure you want to change the base?
Changes from all commits
0e42784
fe433b5
a223460
cc12189
cd6519d
79375d1
2001c8e
a61cd1c
c97d223
6605265
eb2c85d
03a8f97
9cd1dcc
899e7bb
020d6f8
7b2b79d
da1cd5c
75204e8
9fcc10e
83e611c
0f51c2a
1142310
2815d50
ffbd99c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 25.11.0-rc3 | ||
| 25.11.0-rc4 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,6 +22,7 @@ html_guides = custom_target('html_guides', | |
| depfile: '.html.d', | ||
| build_by_default: get_option('enable_docs'), | ||
| install: get_option('enable_docs'), | ||
| install_tag: 'doc', | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainScript executed: #!/bin/bash
# Check minimum required Meson version in the project
echo "=== Searching for Meson version requirements ==="
rg -n "meson_version|project\(" --type python meson.build | head -30Repository: ovsrobot/dpdk <shell_result> Script executed: #!/bin/bash
# Check the root meson.build for version requirements
echo "=== Checking root meson.build ==="
head -50 meson.build 2>/dev/null || echo "Root meson.build not found"
# Also check if there's version info in the doc/guides directory
echo ""
echo "=== Checking doc/guides/meson.build ==="
head -30 doc/guides/meson.build 2>/dev/null || echo "File not found"Repository: ovsrobot/dpdk <shell_result> stdout: </shell_result> Based on my verification, I've found a compatibility issue with the added The project's root Update minimum Meson version requirement to support The addition of 🤖 Prompt for AI Agents |
||
| install_dir: htmldir) | ||
|
|
||
| doc_targets += html_guides | ||
|
|
||
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.
Fix typo in documentation note.
Line 24 contains a grammatical error: "at type of writing" should be "at time of writing".
Apply this diff to fix the typo:
📝 Committable suggestion
🤖 Prompt for AI Agents