enable phpstan task to run in background

This commit is contained in:
Andrew Dolgov 2022-07-31 09:49:09 +03:00
parent ff7e99b986
commit ff18453205
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A
1 changed files with 10 additions and 3 deletions

13
.vscode/tasks.json vendored
View File

@ -3,7 +3,8 @@
"tasks": [
{
"type": "shell",
"label": "phpstan-8.1",
"label": "phpstan-8.1 (background)",
"isBackground": true,
"problemMatcher": {
"fileLocation": ["relative", "${workspaceRoot}"],
"owner": "phpstan-8.1",
@ -12,13 +13,19 @@
"file": 1,
"line": 2,
"message": 3
},
"background": {
"activeOnStart": true,
"beginsPattern": "Using configuration file",
"endsPattern": "All done"
}
},
"command": "docker run --rm -v $(pwd):/app -v /tmp/phpstan-8.1:/tmp/phpstan --workdir /app php:8.1-cli php -d memory_limit=-1 ./vendor/bin/phpstan --memory-limit=2G --error-format=raw || true",
"command": "while true; do docker run --rm -v $(pwd):/app -v /tmp/phpstan-8.1:/tmp/phpstan --workdir /app php:8.1-cli php -d memory_limit=-1 ./vendor/bin/phpstan --memory-limit=2G --error-format=raw || true; echo 'All done'; sleep 30; done",
},
{
"type": "shell",
"label": "phpstan-8.0",
"label": "phpstan-8.0 (run once)",
"problemMatcher": {
"fileLocation": ["relative", "${workspaceRoot}"],
"owner": "phpstan-8.0",