|
234 | 234 | "args": [ |
235 | 235 | "-l", |
236 | 236 | "-c", |
237 | | - "( if [[ $(pwd) =~ ^/mnt ]]; then powershell.exe -NoProfile -ExecutionPolicy Bypass -Command 'cmake --build build --config Debug --parallel $env:NUMBER_OF_PROCESSORS'; else cmake --build build/Debug --config Debug --parallel $(nproc); fi )" |
| 237 | + "( if [[ $(pwd) =~ ^/mnt ]]; then powershell.exe -NoProfile -ExecutionPolicy Bypass -Command \"cmake --build build --config Debug --parallel \\$env:NUMBER_OF_PROCESSORS\"; else cmake --build build/Debug --config Debug --parallel $(nproc); fi )" |
238 | 238 | ], |
239 | 239 | "options": { |
240 | 240 | "cwd": "${workspaceFolder}" |
|
263 | 263 | "args": [ |
264 | 264 | "-l", |
265 | 265 | "-c", |
266 | | - "( if [[ $(pwd) =~ ^/mnt ]]; then powershell.exe -NoProfile -ExecutionPolicy Bypass -Command 'cmake --build build --config Release --parallel $env:NUMBER_OF_PROCESSORS'; else cmake --build build/Release --config Release --parallel $(nproc); fi )" |
| 266 | + "( if [[ $(pwd) =~ ^/mnt ]]; then powershell.exe -NoProfile -ExecutionPolicy Bypass -Command \"cmake --build build --config Release --parallel \\$env:NUMBER_OF_PROCESSORS\"; else cmake --build build/Release --config Release --parallel $(nproc); fi )" |
267 | 267 | ], |
268 | 268 | "options": { |
269 | 269 | "cwd": "${workspaceFolder}" |
|
292 | 292 | "args": [ |
293 | 293 | "-l", |
294 | 294 | "-c", |
295 | | - "( if [[ $(pwd) =~ ^/mnt ]]; then powershell.exe -NoProfile -ExecutionPolicy Bypass -Command 'cmake --build build_shared --config Debug --parallel $env:NUMBER_OF_PROCESSORS'; else cmake --build build_shared/Debug --config Debug --parallel $(nproc); fi )" |
| 295 | + "( if [[ $(pwd) =~ ^/mnt ]]; then powershell.exe -NoProfile -ExecutionPolicy Bypass -Command \"cmake --build build_shared --config Debug --parallel \\$env:NUMBER_OF_PROCESSORS\"; else cmake --build build_shared/Debug --config Debug --parallel $(nproc); fi )" |
296 | 296 | ], |
297 | 297 | "options": { |
298 | 298 | "cwd": "${workspaceFolder}" |
|
321 | 321 | "args": [ |
322 | 322 | "-l", |
323 | 323 | "-c", |
324 | | - "( if [[ $(pwd) =~ ^/mnt ]]; then powershell.exe -NoProfile -ExecutionPolicy Bypass -Command 'cmake --build build_shared --config Release --parallel $env:NUMBER_OF_PROCESSORS'; else cmake --build build_shared/Release --config Release --parallel $(nproc); fi )" |
| 324 | + "( if [[ $(pwd) =~ ^/mnt ]]; then powershell.exe -NoProfile -ExecutionPolicy Bypass -Command \"cmake --build build_shared --config Release --parallel \\$env:NUMBER_OF_PROCESSORS\"; else cmake --build build_shared/Release --config Release --parallel $(nproc); fi )" |
325 | 325 | ], |
326 | 326 | "options": { |
327 | 327 | "cwd": "${workspaceFolder}" |
|
475 | 475 | "command": "bash", |
476 | 476 | "args": [ |
477 | 477 | "-l", |
478 | | - "format_all.sh" |
| 478 | + "-c", |
| 479 | + "./format_all.sh" |
479 | 480 | ], |
480 | 481 | "options": { |
481 | 482 | "cwd": "${workspaceFolder}/scripts" |
|
488 | 489 | "command": "bash", |
489 | 490 | "args": [ |
490 | 491 | "-l", |
491 | | - "run_tests.sh", |
492 | | - "--functional" |
| 492 | + "-c", |
| 493 | + "./run_tests.sh --functional" |
493 | 494 | ], |
494 | 495 | "options": { |
495 | 496 | "cwd": "${workspaceFolder}/scripts" |
|
503 | 504 | "command": "bash", |
504 | 505 | "args": [ |
505 | 506 | "-l", |
506 | | - "run_tests.sh", |
507 | | - "--functional", |
508 | | - "--exit-when-failed", |
| 507 | + "-c", |
| 508 | + "./run_tests.sh --functional --exit-when-failed" |
509 | 509 | ], |
510 | 510 | "options": { |
511 | 511 | "cwd": "${workspaceFolder}/scripts" |
|
519 | 519 | "command": "bash", |
520 | 520 | "args": [ |
521 | 521 | "-l", |
522 | | - "run_tests.sh", |
523 | | - "--performance" |
| 522 | + "-c", |
| 523 | + "./run_tests.sh --performance" |
524 | 524 | ], |
525 | 525 | "options": { |
526 | 526 | "cwd": "${workspaceFolder}/scripts" |
|
534 | 534 | "command": "bash", |
535 | 535 | "args": [ |
536 | 536 | "-l", |
537 | | - "run_tests.sh", |
538 | | - "--shuffle" |
| 537 | + "-c", |
| 538 | + "./run_tests.sh --shuffle" |
539 | 539 | ], |
540 | 540 | "options": { |
541 | 541 | "cwd": "${workspaceFolder}/scripts" |
|
549 | 549 | "command": "bash", |
550 | 550 | "args": [ |
551 | 551 | "-l", |
552 | | - "run_tests.sh", |
553 | | - "--shuffle", |
554 | | - "--exit-when-failed" |
| 552 | + "-c", |
| 553 | + "./run_tests.sh --shuffle --exit-when-failed" |
555 | 554 | ], |
556 | 555 | "options": { |
557 | 556 | "cwd": "${workspaceFolder}/scripts" |
|
565 | 564 | "command": "bash", |
566 | 565 | "args": [ |
567 | 566 | "-l", |
568 | | - "run_tests.sh", |
569 | | - "--video" |
| 567 | + "-c", |
| 568 | + "./run_tests.sh --video" |
570 | 569 | ], |
571 | 570 | "options": { |
572 | 571 | "cwd": "${workspaceFolder}/scripts" |
|
0 commit comments