-
Notifications
You must be signed in to change notification settings - Fork 29.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to run multiple tasks concurrently #7863
Comments
Dups #981 |
@dbaeumer |
The reason why I folded them is that if we allow running multiple tasks supporting multiple commands is almost a must. That we we plan to solve them together in one go. |
I want to use 2 tasks concurrently:
They have different problemMatchers, so can not define as one task. |
@twoeo this is possible with the task 2.0.0. It can run multiple tasks in parallel. |
@dbaeumer I think what @k8w meant and what I'm facing is starting multiple tasks in one command. I now have two tasks that I want to start at build, but I can only choose one default task. The other one I have to start independently via the Command Palette or by choosing it through Tasks -> Run Task. If I set both tasks as default build tasks with |
@ceituna are your tasks watching tasks. If not you can define a new tasks that depends on the two others and mark that one as the default build task. However this is currently not possible if they are watching tasks. |
@dbaeumer Only one of them is (a tsc watch). I wasn't aware of the dependsOn option. Couldn't find it in the docs. I've now setup a new task which depends on the other two as the default build task and everything works as expected. Thanks for the hint! |
You are welcome. Agree that this should be documented as well. |
Didn't find this issue. Allow to run multiple tasks concurrently. Currently it ask s to terminate running one.
This actually for watching tasks. And also seem that tasks are run some way differently that upcoming workbench terminal as they do not keep colors inside running scripts. Terminal and task runner seem to be very relative technically.
The text was updated successfully, but these errors were encountered: