-
Notifications
You must be signed in to change notification settings - Fork 0
/
robot.yaml
40 lines (34 loc) · 1.4 KB
/
robot.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# For more details on the format and content:
# https://github.com/robocorp/rcc/blob/master/docs/recipes.md#what-is-in-robotyaml
tasks:
# Task names here are used when executing the bots, so renaming these is recommended.
Produce Output:
robotTaskName: Produce Output
Produce Output With Trace:
shell: python -m robot -d output -L TRACE --report NONE --logtitle "Producer log" --task "Produce Output" producer.robot
Consume Input:
robotTaskName: Consume Input
Consume Input With Trace:
shell: python -m robot -d output -L TRACE --report NONE --logtitle "Consumer log" --task "Consume Input" consumer.robot
Report Result:
robotTaskName: Report Result
Report Result With Trace:
shell: python -m robot -d output -L TRACE --report NONE --logtitle "Reporter log" --task "Report Result" reporter.robot
environmentConfigs:
- environment_windows_amd64_freeze.yaml
- environment_linux_amd64_freeze.yaml
- environment_darwin_amd64_freeze.yaml
- conda.yaml
preRunScripts:
# Example of running an executable script right before running the robot.
# Different languages and platforms are supported, read more under documentation:
# https://github.com/robocorp/rcc/blob/master/docs/recipes.md#what-are-prerunscripts
- python bin/generate-workitem-file.py output/random-workitem-file.txt
artifactsDir: output
PATH:
- bin
PYTHONPATH:
- resources
- libraries
ignoreFiles:
- .gitignore