Skip to content

Commit

Permalink
Merge branch 'main' into pwalski/gsb_proxy_counters
Browse files Browse the repository at this point in the history
  • Loading branch information
pwalski committed Apr 1, 2024
2 parents 0ed2ab7 + 8c71c0c commit 2131fe2
Show file tree
Hide file tree
Showing 16 changed files with 896 additions and 526 deletions.
131 changes: 131 additions & 0 deletions .vscode/launch.json
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}"
}
]
}
Loading

0 comments on commit 2131fe2

Please sign in to comment.