|
| 1 | +[ |
| 2 | + { |
| 3 | + "label": "Kill Docker Desktop", |
| 4 | + "command": "sudo ./scripts/kill_docker_desktop.sh", |
| 5 | + //"args": [], |
| 6 | + // Env overrides for the command, will be appended to the terminal's environment from the settings. |
| 7 | + // "env": { "foo": "bar" }, |
| 8 | + // Current working directory to spawn the command into, defaults to current project root. |
| 9 | + //"cwd": "/path/to/working/directory", |
| 10 | + // Whether to use a new terminal tab or reuse the existing one to spawn the process, defaults to `false`. |
| 11 | + "use_new_terminal": false, |
| 12 | + // Whether to allow multiple instances of the same task to be run, or rather wait for the existing ones to finish, defaults to `false`. |
| 13 | + "allow_concurrent_runs": false, |
| 14 | + // What to do with the terminal pane and tab, after the command was started: |
| 15 | + // * `always` — always show the task's pane, and focus the corresponding tab in it (default) |
| 16 | + // * `no_focus` — always show the task's pane, add the task's tab in it, but don't focus it |
| 17 | + // * `never` — do not alter focus, but still add/reuse the task's tab in its pane |
| 18 | + "reveal": "always", |
| 19 | + // What to do with the terminal pane and tab, after the command has finished: |
| 20 | + // * `never` — Do nothing when the command finishes (default) |
| 21 | + // * `always` — always hide the terminal tab, hide the pane also if it was the last tab in it |
| 22 | + // * `on_success` — hide the terminal tab on task success only, otherwise behaves similar to `always` |
| 23 | + "hide": "never", |
| 24 | + "shell": "system", |
| 25 | + // Whether to show the task line in the output of the spawned task, defaults to `true`. |
| 26 | + "show_summary": true, |
| 27 | + // Whether to show the command line in the output of the spawned task, defaults to `true`. |
| 28 | + "show_command": true, |
| 29 | + // Represents the tags for inline runnable indicators, or spawning multiple tasks at once. |
| 30 | + "tags": ["docker"] |
| 31 | + }, |
| 32 | + { |
| 33 | + "label": "Launch E2E Test Pipeline", |
| 34 | + "command": "cd tests && ./run_e2e_tests.sh", |
| 35 | + //"args": [], |
| 36 | + // Env overrides for the command, will be appended to the terminal's environment from the settings. |
| 37 | + // "env": { "foo": "bar" }, |
| 38 | + // Current working directory to spawn the command into, defaults to current project root. |
| 39 | + //"cwd": "/path/to/working/directory", |
| 40 | + // Whether to use a new terminal tab or reuse the existing one to spawn the process, defaults to `false`. |
| 41 | + "use_new_terminal": false, |
| 42 | + // Whether to allow multiple instances of the same task to be run, or rather wait for the existing ones to finish, defaults to `false`. |
| 43 | + "allow_concurrent_runs": false, |
| 44 | + // What to do with the terminal pane and tab, after the command was started: |
| 45 | + // * `always` — always show the task's pane, and focus the corresponding tab in it (default) |
| 46 | + // * `no_focus` — always show the task's pane, add the task's tab in it, but don't focus it |
| 47 | + // * `never` — do not alter focus, but still add/reuse the task's tab in its pane |
| 48 | + "reveal": "always", |
| 49 | + // What to do with the terminal pane and tab, after the command has finished: |
| 50 | + // * `never` — Do nothing when the command finishes (default) |
| 51 | + // * `always` — always hide the terminal tab, hide the pane also if it was the last tab in it |
| 52 | + // * `on_success` — hide the terminal tab on task success only, otherwise behaves similar to `always` |
| 53 | + "hide": "never", |
| 54 | + "shell": "system", |
| 55 | + // Whether to show the task line in the output of the spawned task, defaults to `true`. |
| 56 | + "show_summary": true, |
| 57 | + // Whether to show the command line in the output of the spawned task, defaults to `true`. |
| 58 | + "show_command": true, |
| 59 | + // Represents the tags for inline runnable indicators, or spawning multiple tasks at once. |
| 60 | + "tags": ["docker", "e2e", "tests"] |
| 61 | + } |
| 62 | +] |
0 commit comments