Revert "ci: Attempting to resolve the issue with DDK compilation being unavailable"

This reverts commit a622657092.
This commit is contained in:
ShirkNeko
2025-11-03 03:39:46 +08:00
parent a622657092
commit 2433d64b6b
7 changed files with 221 additions and 20 deletions

16
kernel/.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Generate compile_commands.json",
"type": "process",
"command": "python",
"args": [
"${workspaceRoot}/.vscode/generate_compdb.py"
],
"problemMatcher": []
}
]
}