-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathtemplate.yaml
76 lines (72 loc) · 1.95 KB
/
template.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
specificationVersion: 'jobtemplate-2023-09'
name: V-Ray Render
parameterDefinitions:
# Render Parameters
- name: VraySceneFile
type: PATH
objectType: FILE
dataFlow: IN
userInterface:
control: CHOOSE_INPUT_FILE
label: Vray Scene File
groupLabel: Render Parameters
fileFilters:
- label: Vray Scene Files
patterns: ["*.vrscene"]
- label: All Files
patterns: ["*"]
description: >
Choose the Vray scene file you want to render. Use the 'Job Attachments' tab
to add textures and other files that the job needs.
- name: OutputDir
type: PATH
objectType: DIRECTORY
dataFlow: OUT
userInterface:
control: CHOOSE_DIRECTORY
label: Output Directory
groupLabel: Render Parameters
default: "./output"
description: Choose the render output directory.
- name: OutputFilename
type: STRING
userInterface:
control: LINE_EDIT
label: Output File Name
groupLabel: Render Parameters
default: "output.png"
description: Enter the output filename (with extension of choice).
# Software Environment
- name: CondaPackages
type: STRING
userInterface:
control: LINE_EDIT
label: Conda Packages
groupLabel: Software Environment
default: vray
description: >
If you have a Queue Environment that creates a Conda environment from a parameter called CondaPackages, this will
tell it to install vray.
steps:
- name: RenderVray
script:
actions:
onRun:
command: bash
args: ['{{Task.File.Run}}']
cancelation:
mode: NOTIFY_THEN_TERMINATE
embeddedFiles:
- name: Run
type: TEXT
data: |
# Configure the task to fail if any individual command fails.
set -xeuo pipefail
vray -sceneFile='{{Param.VraySceneFile}}' \
-imgFile='{{Param.OutputDir}}/{{Param.OutputFilename}}' \
-display=0
hostRequirements:
attributes:
- name: attr.worker.os.family
anyOf:
- linux