mirror of
https://github.com/actions/runner.git
synced 2025-12-10 04:06:57 +00:00
* Stop ignoring .vscode (launch scripts)
* Check in launch scripts for config and run
This can cause an issue with existing launch configuration on the machines of contributors.
* Improve error msg when runner is not configured
* Unignore .vscode/launch and tasks only
* Remove stopAtEntry and add eof newline
* Remove Runner.Listener from error message
* Rename tasks and run configs
* Ignore BuildConstants.cs
* Use better error msg
* Explain development steps in depth
* Add launch config to directly debug worker
* Update docs with VS Code tips
* Remove auto-generated comments
* Fix link to quickstart in vscode.md
* Remove ':' from link to quickstart
* Revert "Ignore BuildConstants.cs"
This reverts commit 0f13922a87.
* Replace `.sh` with `.(sh/cmd)` in docs
33 lines
961 B
JSON
33 lines
961 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "create runner layout",
|
|
"detail": "Build and Copy all projects, scripts and external dependencies to _layout from src (run this the first time or after deleting _layout)",
|
|
"command": "./dev.sh",
|
|
"windows": {
|
|
"command": "dev.cmd"
|
|
},
|
|
"args": [
|
|
"layout"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/src"
|
|
},
|
|
},
|
|
{
|
|
"label": "build runner layout",
|
|
"detail": "Build and Copy all projects to _layout from src (run this on code change)",
|
|
"command": "./dev.sh",
|
|
"windows": {
|
|
"command": "dev.cmd"
|
|
},
|
|
"args": [
|
|
"build"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/src"
|
|
},
|
|
}
|
|
],
|
|
} |