DragonOS/.vscode/tasks.json
Samuel Dai 717bd9209a
feat(ci): add CI support for building and booting riscv64 kernel in workflow, within oscomp environment (#6)
* feat(ide): add gdb-multiarch debug support for better stack tracking

* feat(test): add oscomp testcase aquirement

* feat(ci): bump to oscomp test

* feat(ci): new ci procedure

* feat(ci): update CI workflow to replace git mirror and remove unnecessary userland build condition
2025-03-21 22:47:57 +08:00

33 lines
895 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "DragonOS: Build riscv64",
"command": "make",
"group": { "kind": "build", "isDefault": true },
"args": [
"ci-build",
"ARCH=riscv64"
],
"options": {
"cwd": "${workspaceFolder}"
}
},
{
"type": "process",
"label": "DragonOS: Start riscv64",
"command": "bash",
"args": [
"ci-start-riscv64.sh"
],
"options": {
"cwd": "${workspaceFolder}/oscomp"
},
"problemMatcher": [],
"isBackground": true
}
]
}