-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into pwalski/gsb_proxy_counters
- Loading branch information
Showing
16 changed files
with
896 additions
and
526 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "offer-template dummy", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--bin=ya-runtime-ai", | ||
"--package=ya-runtime-ai" | ||
], | ||
"filter": { | ||
"name": "ya-runtime-ai", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": [ | ||
"--runtime", | ||
"dummy", | ||
"offer-template" | ||
], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "offer-template automatic", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--bin=ya-runtime-ai", | ||
"--package=ya-runtime-ai" | ||
], | ||
"filter": { | ||
"name": "ya-runtime-ai", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": [ | ||
"--runtime", | ||
"automatic", | ||
"offer-template" | ||
], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "test dummy", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--bin=ya-runtime-ai", | ||
"--package=ya-runtime-ai" | ||
], | ||
"filter": { | ||
"name": "ya-runtime-ai", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": [ | ||
"--runtime", | ||
"dummy", | ||
"test" | ||
], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "test automatic", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--bin=ya-runtime-ai", | ||
"--package=ya-runtime-ai" | ||
], | ||
"filter": { | ||
"name": "ya-runtime-ai", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": [ | ||
"--runtime", | ||
"automatic", | ||
"test" | ||
], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in executable 'ya-runtime-ai'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--bin=ya-runtime-ai", | ||
"--package=ya-runtime-ai" | ||
], | ||
"filter": { | ||
"name": "ya-runtime-ai", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug integration test 'runtime_config'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--test=runtime_config", | ||
"--package=ya-runtime-ai" | ||
], | ||
"filter": { | ||
"name": "runtime_config", | ||
"kind": "test" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
} | ||
] | ||
} |
Oops, something went wrong.