mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 18:26:48 +00:00
* 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
33 lines
895 B
JSON
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
|
|
}
|
|
]
|
|
} |