I have a robot with two tasks namely Task 1 and Task 2. I have configured the robot.yaml file as below
tasks:
Task 1:
robotTaskName: Task A
Task 2:
robotTaskName: Task B
Run all tasks:
shell: python -m robot --report NONE --outputdir output --logtitle “Task log” tasks.robot
condaConfigFile: conda.yaml
artifactsDir: output
PATH:
- .
PYTHONPATH: - .
ignoreFiles:
- .gitignore
While creating a process in control room, I am creating two steps for the two tasks. I have configured the process like step 1 is run in Cloud worker and step 2 is run in On-Premise worker. Would it work fine or would there be any changes??