tasks.json 895 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "type": "shell",
  8. "label": "DragonOS: Build riscv64",
  9. "command": "make",
  10. "group": { "kind": "build", "isDefault": true },
  11. "args": [
  12. "ci-build",
  13. "ARCH=riscv64"
  14. ],
  15. "options": {
  16. "cwd": "${workspaceFolder}"
  17. }
  18. },
  19. {
  20. "type": "process",
  21. "label": "DragonOS: Start riscv64",
  22. "command": "bash",
  23. "args": [
  24. "ci-start-riscv64.sh"
  25. ],
  26. "options": {
  27. "cwd": "${workspaceFolder}/oscomp"
  28. },
  29. "problemMatcher": [],
  30. "isBackground": true
  31. }
  32. ]
  33. }