Skip to content

Instantly share code, notes, and snippets.

@bolthar
Created May 3, 2020 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bolthar/dac4d699cdc25a1fc9d8d2eb2ea934bf to your computer and use it in GitHub Desktop.
Save bolthar/dac4d699cdc25a1fc9d8d2eb2ea934bf to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
apiVersion: argoproj.io/v1Alpha
kind: Workflow
metadata:
generateName: job-10066-
spec:
entrypoint: job-10066
onExit: finalizer
templates:
- name: log-handler
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/io-handler:production-739b7336
command:
- ./io-handler
- log
- '{{inputs.parameters.project-id}}'
- '{{inputs.parameters.building-id}}'
- '{{inputs.parameters.program-name}}'
- '{{workflow.name}}'
- '{{inputs.parameters.step-name}}'
args: []
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
inputs:
parameters:
- name: project-id
- name: building-id
- name: program-name
- name: step-name
- name: log-path
artifacts:
- name: artifact-log-path
path: /tmp/log
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.log-path}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts: []
- name: exporter
container:
image: alpine:3.6
command:
- ls
- -l
args: []
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
inputs:
parameters:
- name: product-to-export
- name: export-location-key
artifacts:
- name: artifact-product-to-export
path: /tmp/file
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.product-to-export}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-export-location-key
path: /tmp/file
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.export-location-key}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: job-exporter
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/io-handler:production-739b7336
command:
- sh
- -c
- ./io-handler export {{inputs.parameters.project-id}} {{inputs.parameters.building-id}}
{{workflow.name}} {{inputs.parameters.export-keys}}
args: []
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
inputs:
parameters:
- name: project-id
- name: building-id
- name: export-keys
artifacts: []
outputs:
artifacts: []
- name: finalizer
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/io-handler:production-739b7336
command:
- sh
- -c
- ./io-handler finalize {{workflow.name}} {{workflow.status}}
args: []
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
inputs:
parameters: []
artifacts: []
outputs:
artifacts: []
- name: ifc2graph
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/ifc2graph:production-401efa8c6862293229da0055d08d743a99eacc68
command:
- sh
- -c
args:
- ./ifc2graph.bash -i /tmp/file -o /tmp/graphdb -s /tmp/storeys
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
- name: storeysfile
artifacts:
- name: artifact-inputfile
path: /tmp/file
s3:
bucket: rendra-eu-central-1
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-storeysfile
path: /tmp/storeys
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.storeysfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-outputfile
path: /tmp/graphdb
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3755-rev-3.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8c1995d8b895ee869b7f1f38a8d693a9
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8c1995d8b895ee869b7f1f38a8d693a9.json
continueOn:
failed: true
- - name: 3755-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8c1995d8b895ee869b7f1f38a8d693a9/logs/main.log
- name: ifcopenshell
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/ifcopenshell:production-c6268b6dac3ee7a56157fc737a183223960c2d5a
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/file -o /tmp/result
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/file
s3:
bucket: rendra-eu-central-1
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/result
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3755-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/35f85ad7fbb704687edf5fbdb0639790
continueOn:
failed: true
- - name: 3755-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/35f85ad7fbb704687edf5fbdb0639790/logs/main.log
- name: ifcopenshell-axis
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/ifcopenshell_axis:production-c6268b6dac3ee7a56157fc737a183223960c2d5a
command:
- sh
- -c
args:
- ./axis.sh -i /tmp/file -o /tmp/result
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/file
s3:
bucket: rendra-eu-central-1
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/result
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3755-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b263a450b8ad969342b67a9b4e71d7bc
continueOn:
failed: true
- - name: 3755-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b263a450b8ad969342b67a9b4e71d7bc/logs/main.log
- name: ifcopenshell-spaces
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/ifcopenshell_spaces:production-c6268b6dac3ee7a56157fc737a183223960c2d5a
command:
- sh
- -c
args:
- ./spaces.sh -i /tmp/file -o /tmp/result
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/file
s3:
bucket: rendra-eu-central-1
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/result
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3755-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/4a15a2a3c0cd4285152caffec1a2794f
continueOn:
failed: true
- - name: 3755-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/4a15a2a3c0cd4285152caffec1a2794f/logs/main.log
- name: ifcopenshell-pipes
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/ifcopenshell_pipes:production-c6268b6dac3ee7a56157fc737a183223960c2d5a
command:
- sh
- -c
args:
- ./pipes.sh -i /tmp/file -o /tmp/result
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/file
s3:
bucket: rendra-eu-central-1
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/result
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3755-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/2f5cab38c7cb1d83946543388c9427a3
continueOn:
failed: true
- - name: 3755-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/2f5cab38c7cb1d83946543388c9427a3/logs/main.log
- name: ifcopenshell-layerset-sliced
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/ifcopenshell_layerset_sliced:production-c6268b6dac3ee7a56157fc737a183223960c2d5a
command:
- sh
- -c
args:
- ./layerset-sliced.sh -i /tmp/file -o /tmp/result
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/file
s3:
bucket: rendra-eu-central-1
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/result
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3755-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cc7a1c6e36f4a9b4328889768d36c653
continueOn:
failed: true
- - name: 3755-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cc7a1c6e36f4a9b4328889768d36c653/logs/main.log
- name: ifcopenshell-layerset-unsliced
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/ifcopenshell_layerset_unsliced:production-c6268b6dac3ee7a56157fc737a183223960c2d5a
command:
- sh
- -c
args:
- ./layerset-unsliced.sh -i /tmp/file -o /tmp/result
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/file
s3:
bucket: rendra-eu-central-1
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/result
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3755-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/21930e49977b6ca7822486d565e58808
continueOn:
failed: true
- - name: 3755-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/21930e49977b6ca7822486d565e58808/logs/main.log
- name: polly-squeeze-high
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/polly-squeeze_high:production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee
command:
- sh
- -c
args:
- ./squeeze_args_from_env.sh -i /tmp/result -o /tmp/polly
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/result
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/polly
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/35f85ad7fbb704687edf5fbdb0639790
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d25b61774ff5c0d26a20ad1dff6cfbbc
continueOn:
failed: true
- - name: 3755--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d25b61774ff5c0d26a20ad1dff6cfbbc/logs/main.log
- name: 3755-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/2f5cab38c7cb1d83946543388c9427a3
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9e1583f90e42527c82964edf9dd52683
continueOn:
failed: true
- - name: 3755-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9e1583f90e42527c82964edf9dd52683/logs/main.log
- name: 3755-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cc7a1c6e36f4a9b4328889768d36c653
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e96a710c7f3e063c07dac3d893c244c8
continueOn:
failed: true
- - name: 3755-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e96a710c7f3e063c07dac3d893c244c8/logs/main.log
- name: 3755-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/21930e49977b6ca7822486d565e58808
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/1cf132f18f865b1d75902a16324259b9
continueOn:
failed: true
- - name: 3755-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/1cf132f18f865b1d75902a16324259b9/logs/main.log
- name: mesh-crunch-high
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/mesh-crunch_high:production-3d98f629c93838adee05a6f6d53abd62ef949544
command:
- sh
- -c
args:
- ./mesh-crunch-args_from_env.sh -i /tmp/polly -o {{inputs.parameters.meshcrunchoutputpath}}
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
- name: meshcrunchoutputpath
artifacts:
- name: artifact-inputfile
path: /tmp/polly
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: '{{inputs.parameters.meshcrunchoutputpath}}'
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d25b61774ff5c0d26a20ad1dff6cfbbc
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/bbacdf99f8b245f502bed986bb1eae95
- name: meshcrunchoutputpath
value: /tmp/3755defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3755-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/bbacdf99f8b245f502bed986bb1eae95/logs/main.log
- name: mesh-crunch-low
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/mesh-crunch_low:production-3d98f629c93838adee05a6f6d53abd62ef949544
command:
- sh
- -c
args:
- ./mesh-crunch-args_from_env.sh -i /tmp/polly -o {{inputs.parameters.meshcrunchoutputpath}}
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
- name: meshcrunchoutputpath
artifacts:
- name: artifact-inputfile
path: /tmp/polly
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: '{{inputs.parameters.meshcrunchoutputpath}}'
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d25b61774ff5c0d26a20ad1dff6cfbbc
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a0944939cfa09d99f8ef157fd91d29c7
- name: meshcrunchoutputpath
value: /tmp/3755defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3755-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a0944939cfa09d99f8ef157fd91d29c7/logs/main.log
- name: mesh-crunch-pipes-high
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/mesh-crunch_pipes_high:production-3d98f629c93838adee05a6f6d53abd62ef949544
command:
- sh
- -c
args:
- ./mesh-crunch-args_from_env.sh -i /tmp/polly -o {{inputs.parameters.meshcrunchoutputpath}}
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
- name: meshcrunchoutputpath
artifacts:
- name: artifact-inputfile
path: /tmp/polly
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: '{{inputs.parameters.meshcrunchoutputpath}}'
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9e1583f90e42527c82964edf9dd52683
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/36bd36378407b69f67fa05d4ea7e05e2
- name: meshcrunchoutputpath
value: /tmp/3755defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3755-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/36bd36378407b69f67fa05d4ea7e05e2/logs/main.log
- name: mesh-crunch-pipes-low
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/mesh-crunch_pipes_low:production-3d98f629c93838adee05a6f6d53abd62ef949544
command:
- sh
- -c
args:
- ./mesh-crunch-args_from_env.sh -i /tmp/polly -o {{inputs.parameters.meshcrunchoutputpath}}
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
- name: meshcrunchoutputpath
artifacts:
- name: artifact-inputfile
path: /tmp/polly
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: '{{inputs.parameters.meshcrunchoutputpath}}'
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: 3755-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9e1583f90e42527c82964edf9dd52683
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/18d15ea61bdf29a7372f1c57a4f1b54c
- name: meshcrunchoutputpath
value: /tmp/3755defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3755-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/18d15ea61bdf29a7372f1c57a4f1b54c/logs/main.log
- name: 3755-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e96a710c7f3e063c07dac3d893c244c8
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/84bd298b18824c81626993a050e8f7e1
- name: meshcrunchoutputpath
value: /tmp/3755slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3755-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/84bd298b18824c81626993a050e8f7e1/logs/main.log
- name: 3755-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/1cf132f18f865b1d75902a16324259b9
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ca5a951c0159d7409f4a339e2e68cd2d
- name: meshcrunchoutputpath
value: /tmp/3755unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3755-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3755-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ca5a951c0159d7409f4a339e2e68cd2d/logs/main.log
- name: octtreemaker-RIV01VENTI
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3755defaultmeshcrunchhigh --high /tmp/3755defaultmeshcrunchpipeshigh
--high /tmp/3755slicedmeshcrunchhigh --low /tmp/3755defaultmeshcrunchlow --low
/tmp/3755defaultmeshcrunchpipeslow --low /tmp/3755unslicedmeshcrunchlow --out
/tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3755defaultmeshcrunchhigh
- name: inputfile-3755defaultmeshcrunchpipeshigh
- name: inputfile-3755slicedmeshcrunchhigh
- name: inputfile-3755defaultmeshcrunchlow
- name: inputfile-3755defaultmeshcrunchpipeslow
- name: inputfile-3755unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3755defaultmeshcrunchhigh
path: /tmp/3755defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3755defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3755defaultmeshcrunchpipeshigh
path: /tmp/3755defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3755defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3755slicedmeshcrunchhigh
path: /tmp/3755slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3755slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3755defaultmeshcrunchlow
path: /tmp/3755defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3755defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3755defaultmeshcrunchpipeslow
path: /tmp/3755defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3755defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3755unslicedmeshcrunchlow
path: /tmp/3755unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3755unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIV01VENTI-octtreemaker-RIV01VENTI-step
steps:
- - name: octtreemaker-RIV01VENTI-execute
template: octtreemaker-RIV01VENTI
arguments:
parameters:
- name: inputfile-3755defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/bbacdf99f8b245f502bed986bb1eae95
- name: inputfile-3755defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/36bd36378407b69f67fa05d4ea7e05e2
- name: inputfile-3755slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/84bd298b18824c81626993a050e8f7e1
- name: inputfile-3755defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a0944939cfa09d99f8ef157fd91d29c7
- name: inputfile-3755defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/18d15ea61bdf29a7372f1c57a4f1b54c
- name: inputfile-3755unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ca5a951c0159d7409f4a339e2e68cd2d
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/c9d22ba7db88bf038b470b8354d7fe8b
continueOn:
failed: true
- - name: RIV01VENTI-octtreemaker-RIV01VENTI-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIV01VENTI-octtreemaker-RIV01VENTI-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/c9d22ba7db88bf038b470b8354d7fe8b/logs/main.log
- name: obj2protobuf-RIV01VENTI
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIV01VENTI-obj2protobuf-RIV01VENTI-step
steps:
- - name: obj2protobuf-RIV01VENTI-execute
template: obj2protobuf-RIV01VENTI
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/c9d22ba7db88bf038b470b8354d7fe8b
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/d3f17e21fdb37fc24af0f6494ef732ef
continueOn:
failed: true
- - name: RIV01VENTI-obj2protobuf-RIV01VENTI-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIV01VENTI-obj2protobuf-RIV01VENTI-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/d3f17e21fdb37fc24af0f6494ef732ef/logs/main.log
- name: spaceoutlines-RIV01VENTI
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3755ifc2graph --storeys /tmp/3755ifc2graphstorey
--in /tmp/3755ifcopenshellspaces --out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3755ifc2graph
- name: inputfile-3755ifc2graphstorey
- name: inputfile-3755ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3755ifc2graph
path: /tmp/3755ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3755ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3755ifc2graphstorey
path: /tmp/3755ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3755ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3755ifcopenshellspaces
path: /tmp/3755ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3755ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIV01VENTI-spaceoutlines-RIV01VENTI-step
steps:
- - name: spaceoutlines-RIV01VENTI-execute
template: spaceoutlines-RIV01VENTI
arguments:
parameters:
- name: inputfile-3755ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8c1995d8b895ee869b7f1f38a8d693a9
- name: inputfile-3755ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8c1995d8b895ee869b7f1f38a8d693a9.json
- name: inputfile-3755ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/4a15a2a3c0cd4285152caffec1a2794f
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/26b828a9e91ba60237fdd92e723f5f79
continueOn:
failed: true
- - name: RIV01VENTI-spaceoutlines-RIV01VENTI-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIV01VENTI-spaceoutlines-RIV01VENTI-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/26b828a9e91ba60237fdd92e723f5f79/logs/main.log
- name: 3727-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3727-rev-4.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/82916d715c9be21d3c4de44edb9ed530
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/82916d715c9be21d3c4de44edb9ed530.json
continueOn:
failed: true
- - name: 3727-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/82916d715c9be21d3c4de44edb9ed530/logs/main.log
- name: 3727-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3727-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1ae3bb8e85dd6814836acff332b12d3b
continueOn:
failed: true
- - name: 3727-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1ae3bb8e85dd6814836acff332b12d3b/logs/main.log
- name: 3727-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3727-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/d9677efa38a2c2613187f8b2407d4109
continueOn:
failed: true
- - name: 3727-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/d9677efa38a2c2613187f8b2407d4109/logs/main.log
- name: 3727-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3727-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cf6c8bbf73cc067e8d58bf455d19bcd9
continueOn:
failed: true
- - name: 3727-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cf6c8bbf73cc067e8d58bf455d19bcd9/logs/main.log
- name: 3727-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3727-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/10e8809d48f49a1ff4b334e05cb3b41f
continueOn:
failed: true
- - name: 3727-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/10e8809d48f49a1ff4b334e05cb3b41f/logs/main.log
- name: 3727-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3727-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/19095b57e3dc598365dafcd1aa4eaa82
continueOn:
failed: true
- - name: 3727-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/19095b57e3dc598365dafcd1aa4eaa82/logs/main.log
- name: 3727-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3727-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bf2f981fb544c8fa71f9e86f4993f561
continueOn:
failed: true
- - name: 3727-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bf2f981fb544c8fa71f9e86f4993f561/logs/main.log
- name: 3727--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1ae3bb8e85dd6814836acff332b12d3b
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/3564eed305500d8496772aca0af7d6a9
continueOn:
failed: true
- - name: 3727--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/3564eed305500d8496772aca0af7d6a9/logs/main.log
- name: 3727-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/10e8809d48f49a1ff4b334e05cb3b41f
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/6e9499b70f45de73d02416d70db5fb8f
continueOn:
failed: true
- - name: 3727-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/6e9499b70f45de73d02416d70db5fb8f/logs/main.log
- name: 3727-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/19095b57e3dc598365dafcd1aa4eaa82
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7c97a5e2ae31ec785fb2aa28c1f1ac7f
continueOn:
failed: true
- - name: 3727-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7c97a5e2ae31ec785fb2aa28c1f1ac7f/logs/main.log
- name: 3727-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bf2f981fb544c8fa71f9e86f4993f561
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/efc375608d6418f02f000e531af12105
continueOn:
failed: true
- - name: 3727-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/efc375608d6418f02f000e531af12105/logs/main.log
- name: 3727-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/3564eed305500d8496772aca0af7d6a9
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/bc51cf2cdfac532e349f19c035e80acc
- name: meshcrunchoutputpath
value: /tmp/3727defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3727-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/bc51cf2cdfac532e349f19c035e80acc/logs/main.log
- name: 3727-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/3564eed305500d8496772aca0af7d6a9
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/5a5aa31f1284f793a4100e4d47069437
- name: meshcrunchoutputpath
value: /tmp/3727defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3727-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/5a5aa31f1284f793a4100e4d47069437/logs/main.log
- name: 3727-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/6e9499b70f45de73d02416d70db5fb8f
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b82a9ac056cc93c8ef63da3adfd95150
- name: meshcrunchoutputpath
value: /tmp/3727defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3727-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b82a9ac056cc93c8ef63da3adfd95150/logs/main.log
- name: 3727-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/6e9499b70f45de73d02416d70db5fb8f
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1a2761477a0eecf31a8fbbc96a29e148
- name: meshcrunchoutputpath
value: /tmp/3727defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3727-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1a2761477a0eecf31a8fbbc96a29e148/logs/main.log
- name: 3727-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7c97a5e2ae31ec785fb2aa28c1f1ac7f
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/6a305f3370197e53c70ea345b38eddd7
- name: meshcrunchoutputpath
value: /tmp/3727slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3727-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/6a305f3370197e53c70ea345b38eddd7/logs/main.log
- name: 3727-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/efc375608d6418f02f000e531af12105
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/e824c00a4467500030ff8c77ce44046c
- name: meshcrunchoutputpath
value: /tmp/3727unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3727-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3727-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/e824c00a4467500030ff8c77ce44046c/logs/main.log
- name: 3728-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3728-rev-3.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/04500e456d6a5879d609022070e39b70
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/04500e456d6a5879d609022070e39b70.json
continueOn:
failed: true
- - name: 3728-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/04500e456d6a5879d609022070e39b70/logs/main.log
- name: 3728-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3728-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1f36801d9c662f138ae8b486b8531d4b
continueOn:
failed: true
- - name: 3728-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1f36801d9c662f138ae8b486b8531d4b/logs/main.log
- name: 3728-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3728-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ba98eb6f75afc02df489729c8a26cffd
continueOn:
failed: true
- - name: 3728-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ba98eb6f75afc02df489729c8a26cffd/logs/main.log
- name: 3728-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3728-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/fef8f838da7f7ab4977c86b3235ec5db
continueOn:
failed: true
- - name: 3728-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/fef8f838da7f7ab4977c86b3235ec5db/logs/main.log
- name: 3728-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3728-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3709060ae50d421c5f5e316f3d4245c8
continueOn:
failed: true
- - name: 3728-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3709060ae50d421c5f5e316f3d4245c8/logs/main.log
- name: 3728-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3728-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/4847aa76a0bbfdcf56bb548ce0bad275
continueOn:
failed: true
- - name: 3728-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/4847aa76a0bbfdcf56bb548ce0bad275/logs/main.log
- name: 3728-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3728-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c131e1d9d5b27d7d51cfe309f88833db
continueOn:
failed: true
- - name: 3728-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c131e1d9d5b27d7d51cfe309f88833db/logs/main.log
- name: 3728--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1f36801d9c662f138ae8b486b8531d4b
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/98c7be927fbbd3f4fb9572063e00e2ad
continueOn:
failed: true
- - name: 3728--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/98c7be927fbbd3f4fb9572063e00e2ad/logs/main.log
- name: 3728-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3709060ae50d421c5f5e316f3d4245c8
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5c2dedd9735a700f4bd9a957817c8460
continueOn:
failed: true
- - name: 3728-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5c2dedd9735a700f4bd9a957817c8460/logs/main.log
- name: 3728-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/4847aa76a0bbfdcf56bb548ce0bad275
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/f58b320a4ff26d39fdaa0a7796eaca4c
continueOn:
failed: true
- - name: 3728-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/f58b320a4ff26d39fdaa0a7796eaca4c/logs/main.log
- name: 3728-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c131e1d9d5b27d7d51cfe309f88833db
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/56675ebd9d72917f8184217d430f87f4
continueOn:
failed: true
- - name: 3728-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/56675ebd9d72917f8184217d430f87f4/logs/main.log
- name: 3728-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/98c7be927fbbd3f4fb9572063e00e2ad
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f3d0b4f460af0832164363823b7afba3
- name: meshcrunchoutputpath
value: /tmp/3728defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3728-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f3d0b4f460af0832164363823b7afba3/logs/main.log
- name: 3728-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/98c7be927fbbd3f4fb9572063e00e2ad
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/fd79b7a7f23461b558165459f4854950
- name: meshcrunchoutputpath
value: /tmp/3728defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3728-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/fd79b7a7f23461b558165459f4854950/logs/main.log
- name: 3728-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5c2dedd9735a700f4bd9a957817c8460
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/632677f57f294a940fb5c69f56057009
- name: meshcrunchoutputpath
value: /tmp/3728defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3728-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/632677f57f294a940fb5c69f56057009/logs/main.log
- name: 3728-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5c2dedd9735a700f4bd9a957817c8460
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/917a7530c2c9a430287370f268bc1d0e
- name: meshcrunchoutputpath
value: /tmp/3728defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3728-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/917a7530c2c9a430287370f268bc1d0e/logs/main.log
- name: 3728-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/f58b320a4ff26d39fdaa0a7796eaca4c
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/baf8c35b63dc72fb9cfdc10137eb7c88
- name: meshcrunchoutputpath
value: /tmp/3728slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3728-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/baf8c35b63dc72fb9cfdc10137eb7c88/logs/main.log
- name: 3728-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/56675ebd9d72917f8184217d430f87f4
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1a63dd048cc74a740cc88a6b3fa831b5
- name: meshcrunchoutputpath
value: /tmp/3728unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3728-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3728-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1a63dd048cc74a740cc88a6b3fa831b5/logs/main.log
- name: octtreemaker-RIB
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3729defaultmeshcrunchhigh --high /tmp/3729defaultmeshcrunchpipeshigh
--high /tmp/3729slicedmeshcrunchhigh --high /tmp/3727defaultmeshcrunchhigh
--high /tmp/3727defaultmeshcrunchpipeshigh --high /tmp/3727slicedmeshcrunchhigh
--high /tmp/3728defaultmeshcrunchhigh --high /tmp/3728defaultmeshcrunchpipeshigh
--high /tmp/3728slicedmeshcrunchhigh --low /tmp/3729defaultmeshcrunchlow --low
/tmp/3729defaultmeshcrunchpipeslow --low /tmp/3729unslicedmeshcrunchlow --low
/tmp/3727defaultmeshcrunchlow --low /tmp/3727defaultmeshcrunchpipeslow --low
/tmp/3727unslicedmeshcrunchlow --low /tmp/3728defaultmeshcrunchlow --low /tmp/3728defaultmeshcrunchpipeslow
--low /tmp/3728unslicedmeshcrunchlow --out /tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3729defaultmeshcrunchhigh
- name: inputfile-3729defaultmeshcrunchpipeshigh
- name: inputfile-3729slicedmeshcrunchhigh
- name: inputfile-3727defaultmeshcrunchhigh
- name: inputfile-3727defaultmeshcrunchpipeshigh
- name: inputfile-3727slicedmeshcrunchhigh
- name: inputfile-3728defaultmeshcrunchhigh
- name: inputfile-3728defaultmeshcrunchpipeshigh
- name: inputfile-3728slicedmeshcrunchhigh
- name: inputfile-3729defaultmeshcrunchlow
- name: inputfile-3729defaultmeshcrunchpipeslow
- name: inputfile-3729unslicedmeshcrunchlow
- name: inputfile-3727defaultmeshcrunchlow
- name: inputfile-3727defaultmeshcrunchpipeslow
- name: inputfile-3727unslicedmeshcrunchlow
- name: inputfile-3728defaultmeshcrunchlow
- name: inputfile-3728defaultmeshcrunchpipeslow
- name: inputfile-3728unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3729defaultmeshcrunchhigh
path: /tmp/3729defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3729defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3729defaultmeshcrunchpipeshigh
path: /tmp/3729defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3729defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3729slicedmeshcrunchhigh
path: /tmp/3729slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3729slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3727defaultmeshcrunchhigh
path: /tmp/3727defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3727defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3727defaultmeshcrunchpipeshigh
path: /tmp/3727defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3727defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3727slicedmeshcrunchhigh
path: /tmp/3727slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3727slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3728defaultmeshcrunchhigh
path: /tmp/3728defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3728defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3728defaultmeshcrunchpipeshigh
path: /tmp/3728defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3728defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3728slicedmeshcrunchhigh
path: /tmp/3728slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3728slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3729defaultmeshcrunchlow
path: /tmp/3729defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3729defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3729defaultmeshcrunchpipeslow
path: /tmp/3729defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3729defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3729unslicedmeshcrunchlow
path: /tmp/3729unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3729unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3727defaultmeshcrunchlow
path: /tmp/3727defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3727defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3727defaultmeshcrunchpipeslow
path: /tmp/3727defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3727defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3727unslicedmeshcrunchlow
path: /tmp/3727unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3727unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3728defaultmeshcrunchlow
path: /tmp/3728defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3728defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3728defaultmeshcrunchpipeslow
path: /tmp/3728defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3728defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3728unslicedmeshcrunchlow
path: /tmp/3728unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3728unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIB-octtreemaker-RIB-step
steps:
- - name: octtreemaker-RIB-execute
template: octtreemaker-RIB
arguments:
parameters:
- name: inputfile-3729defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/37b29c8a01d52035865fec1b8f4b28cb
- name: inputfile-3729defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2abe6023904fc4c0d95815de3c2ce39e
- name: inputfile-3729slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/c8a4a7a12a6ad3f2badff241f44c6af8
- name: inputfile-3727defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/bc51cf2cdfac532e349f19c035e80acc
- name: inputfile-3727defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b82a9ac056cc93c8ef63da3adfd95150
- name: inputfile-3727slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/6a305f3370197e53c70ea345b38eddd7
- name: inputfile-3728defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f3d0b4f460af0832164363823b7afba3
- name: inputfile-3728defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/632677f57f294a940fb5c69f56057009
- name: inputfile-3728slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/baf8c35b63dc72fb9cfdc10137eb7c88
- name: inputfile-3729defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a6a29f8441eb74801255a27b369dcc17
- name: inputfile-3729defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/18ede711b4b4aa62676877c94bdcec96
- name: inputfile-3729unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/507c43f1cffbf8592b121f676c403c40
- name: inputfile-3727defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/5a5aa31f1284f793a4100e4d47069437
- name: inputfile-3727defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1a2761477a0eecf31a8fbbc96a29e148
- name: inputfile-3727unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/e824c00a4467500030ff8c77ce44046c
- name: inputfile-3728defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/fd79b7a7f23461b558165459f4854950
- name: inputfile-3728defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/917a7530c2c9a430287370f268bc1d0e
- name: inputfile-3728unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1a63dd048cc74a740cc88a6b3fa831b5
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/efd435c66f66e63bf7fb0e2564d5be3e
continueOn:
failed: true
- - name: RIB-octtreemaker-RIB-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIB-octtreemaker-RIB-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/efd435c66f66e63bf7fb0e2564d5be3e/logs/main.log
- name: obj2protobuf-RIB
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIB-obj2protobuf-RIB-step
steps:
- - name: obj2protobuf-RIB-execute
template: obj2protobuf-RIB
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/efd435c66f66e63bf7fb0e2564d5be3e
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/9ac7bb30fe8e0715565a1aa412a9306f
continueOn:
failed: true
- - name: RIB-obj2protobuf-RIB-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIB-obj2protobuf-RIB-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/9ac7bb30fe8e0715565a1aa412a9306f/logs/main.log
- name: spaceoutlines-RIB
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3729ifc2graph --storeys /tmp/3729ifc2graphstorey
--graphdb /tmp/3727ifc2graph --storeys /tmp/3727ifc2graphstorey --graphdb
/tmp/3728ifc2graph --storeys /tmp/3728ifc2graphstorey --in /tmp/3729ifcopenshellspaces
--in /tmp/3727ifcopenshellspaces --in /tmp/3728ifcopenshellspaces --out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3729ifc2graph
- name: inputfile-3729ifc2graphstorey
- name: inputfile-3727ifc2graph
- name: inputfile-3727ifc2graphstorey
- name: inputfile-3728ifc2graph
- name: inputfile-3728ifc2graphstorey
- name: inputfile-3729ifcopenshellspaces
- name: inputfile-3727ifcopenshellspaces
- name: inputfile-3728ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3729ifc2graph
path: /tmp/3729ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3729ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3729ifc2graphstorey
path: /tmp/3729ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3729ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3727ifc2graph
path: /tmp/3727ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3727ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3727ifc2graphstorey
path: /tmp/3727ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3727ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3728ifc2graph
path: /tmp/3728ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3728ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3728ifc2graphstorey
path: /tmp/3728ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3728ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3729ifcopenshellspaces
path: /tmp/3729ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3729ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3727ifcopenshellspaces
path: /tmp/3727ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3727ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3728ifcopenshellspaces
path: /tmp/3728ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3728ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIB-spaceoutlines-RIB-step
steps:
- - name: spaceoutlines-RIB-execute
template: spaceoutlines-RIB
arguments:
parameters:
- name: inputfile-3729ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4084335d5b631c272cdbaa2e0eb9eb26
- name: inputfile-3729ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4084335d5b631c272cdbaa2e0eb9eb26.json
- name: inputfile-3727ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/82916d715c9be21d3c4de44edb9ed530
- name: inputfile-3727ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/82916d715c9be21d3c4de44edb9ed530.json
- name: inputfile-3728ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/04500e456d6a5879d609022070e39b70
- name: inputfile-3728ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/04500e456d6a5879d609022070e39b70.json
- name: inputfile-3729ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3b9fa96dd7d43138c9ae11ac8493dca9
- name: inputfile-3727ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cf6c8bbf73cc067e8d58bf455d19bcd9
- name: inputfile-3728ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/fef8f838da7f7ab4977c86b3235ec5db
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/dbf7a5fecf732573de1b0017828a7d99
continueOn:
failed: true
- - name: RIB-spaceoutlines-RIB-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIB-spaceoutlines-RIB-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/dbf7a5fecf732573de1b0017828a7d99/logs/main.log
- name: 3725-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3725-rev-4.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4f62c11e281610356911a1addd0647bb
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4f62c11e281610356911a1addd0647bb.json
continueOn:
failed: true
- - name: 3725-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4f62c11e281610356911a1addd0647bb/logs/main.log
- name: 3725-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3725-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7695b87183a98569ed173799632c8e8b
continueOn:
failed: true
- - name: 3725-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7695b87183a98569ed173799632c8e8b/logs/main.log
- name: 3725-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3725-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0c28b7da6b2290788dff1c225394466b
continueOn:
failed: true
- - name: 3725-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0c28b7da6b2290788dff1c225394466b/logs/main.log
- name: 3725-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3725-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f6e938eab312ddd70e192092f41f4725
continueOn:
failed: true
- - name: 3725-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f6e938eab312ddd70e192092f41f4725/logs/main.log
- name: 3725-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3725-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ff59aa5c089cdf68218bc5949a15c460
continueOn:
failed: true
- - name: 3725-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ff59aa5c089cdf68218bc5949a15c460/logs/main.log
- name: 3725-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3725-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3e208124daaadc656b83375c773df37d
continueOn:
failed: true
- - name: 3725-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3e208124daaadc656b83375c773df37d/logs/main.log
- name: 3725-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3725-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c9d7352c70b597caae9dec70eb23e271
continueOn:
failed: true
- - name: 3725-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c9d7352c70b597caae9dec70eb23e271/logs/main.log
- name: 3725--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7695b87183a98569ed173799632c8e8b
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/cdb1f8e045a2ed0a0b4ed4b724477372
continueOn:
failed: true
- - name: 3725--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/cdb1f8e045a2ed0a0b4ed4b724477372/logs/main.log
- name: 3725-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ff59aa5c089cdf68218bc5949a15c460
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/fab1b990b28c0c3de685711dacf2ee84
continueOn:
failed: true
- - name: 3725-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/fab1b990b28c0c3de685711dacf2ee84/logs/main.log
- name: 3725-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3e208124daaadc656b83375c773df37d
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/2e23bac778ee9ba45a7ae8d000f96f6b
continueOn:
failed: true
- - name: 3725-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/2e23bac778ee9ba45a7ae8d000f96f6b/logs/main.log
- name: 3725-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c9d7352c70b597caae9dec70eb23e271
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/239a3c58093d2d4a066c36456d688120
continueOn:
failed: true
- - name: 3725-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/239a3c58093d2d4a066c36456d688120/logs/main.log
- name: 3725-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/cdb1f8e045a2ed0a0b4ed4b724477372
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b1ddec6ca18967815562cde95ac713da
- name: meshcrunchoutputpath
value: /tmp/3725defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3725-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b1ddec6ca18967815562cde95ac713da/logs/main.log
- name: 3725-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/cdb1f8e045a2ed0a0b4ed4b724477372
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6fe9395a8bf7320b0492e630601fee7b
- name: meshcrunchoutputpath
value: /tmp/3725defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3725-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6fe9395a8bf7320b0492e630601fee7b/logs/main.log
- name: 3725-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/fab1b990b28c0c3de685711dacf2ee84
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a50484693032353192b735aef07e55b3
- name: meshcrunchoutputpath
value: /tmp/3725defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3725-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a50484693032353192b735aef07e55b3/logs/main.log
- name: 3725-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/fab1b990b28c0c3de685711dacf2ee84
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/cfe53c0ea012fcd0f8efe120842fe193
- name: meshcrunchoutputpath
value: /tmp/3725defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3725-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/cfe53c0ea012fcd0f8efe120842fe193/logs/main.log
- name: 3725-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/2e23bac778ee9ba45a7ae8d000f96f6b
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/6428a9ce22d73421a1ba2b0c9928e2f7
- name: meshcrunchoutputpath
value: /tmp/3725slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3725-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/6428a9ce22d73421a1ba2b0c9928e2f7/logs/main.log
- name: 3725-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/239a3c58093d2d4a066c36456d688120
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/0d1409d2295b7263d0c858f21c0b40e0
- name: meshcrunchoutputpath
value: /tmp/3725unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3725-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3725-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/0d1409d2295b7263d0c858f21c0b40e0/logs/main.log
- name: 3726-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3726-rev-5.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/04efc7cdf033d6fc995572b77357e372
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/04efc7cdf033d6fc995572b77357e372.json
continueOn:
failed: true
- - name: 3726-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/04efc7cdf033d6fc995572b77357e372/logs/main.log
- name: 3726-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3726-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/be9b2547644f9f3b596dd897d5169056
continueOn:
failed: true
- - name: 3726-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/be9b2547644f9f3b596dd897d5169056/logs/main.log
- name: 3726-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3726-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/425c1e38efc52a100f1e87c8116cfbb5
continueOn:
failed: true
- - name: 3726-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/425c1e38efc52a100f1e87c8116cfbb5/logs/main.log
- name: 3726-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3726-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/57a96422ab508a15d0d4c2a4a2b6ea8e
continueOn:
failed: true
- - name: 3726-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/57a96422ab508a15d0d4c2a4a2b6ea8e/logs/main.log
- name: 3726-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3726-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/319c474838f13d23a8493ab70d6091ee
continueOn:
failed: true
- - name: 3726-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/319c474838f13d23a8493ab70d6091ee/logs/main.log
- name: 3726-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3726-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/50f6613086eab60450e12ae25d3408c0
continueOn:
failed: true
- - name: 3726-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/50f6613086eab60450e12ae25d3408c0/logs/main.log
- name: 3726-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3726-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/aef094d29087b1562744b7871964013b
continueOn:
failed: true
- - name: 3726-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/aef094d29087b1562744b7871964013b/logs/main.log
- name: 3726--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/be9b2547644f9f3b596dd897d5169056
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7e716c3aa70098d28184996fa8337fe8
continueOn:
failed: true
- - name: 3726--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7e716c3aa70098d28184996fa8337fe8/logs/main.log
- name: 3726-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/319c474838f13d23a8493ab70d6091ee
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d03db33ed9ab4f9dbd26e77f02185d8a
continueOn:
failed: true
- - name: 3726-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d03db33ed9ab4f9dbd26e77f02185d8a/logs/main.log
- name: 3726-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/50f6613086eab60450e12ae25d3408c0
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7589ce2803c4ae20c06e044b262998a0
continueOn:
failed: true
- - name: 3726-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7589ce2803c4ae20c06e044b262998a0/logs/main.log
- name: 3726-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/aef094d29087b1562744b7871964013b
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9cb6e245fe3633fde41e74f2e6e37d87
continueOn:
failed: true
- - name: 3726-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9cb6e245fe3633fde41e74f2e6e37d87/logs/main.log
- name: 3726-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7e716c3aa70098d28184996fa8337fe8
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/4290be8a7fc6683349a3b63dd8ce4056
- name: meshcrunchoutputpath
value: /tmp/3726defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3726-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/4290be8a7fc6683349a3b63dd8ce4056/logs/main.log
- name: 3726-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7e716c3aa70098d28184996fa8337fe8
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/840d7260c6e6a5319da58205483b21f6
- name: meshcrunchoutputpath
value: /tmp/3726defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3726-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/840d7260c6e6a5319da58205483b21f6/logs/main.log
- name: 3726-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d03db33ed9ab4f9dbd26e77f02185d8a
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/0338d18223440184e3257bb028d8bdb0
- name: meshcrunchoutputpath
value: /tmp/3726defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3726-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/0338d18223440184e3257bb028d8bdb0/logs/main.log
- name: 3726-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d03db33ed9ab4f9dbd26e77f02185d8a
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/c267fc783d576ac5f3349e2aa176c42b
- name: meshcrunchoutputpath
value: /tmp/3726defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3726-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/c267fc783d576ac5f3349e2aa176c42b/logs/main.log
- name: 3726-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7589ce2803c4ae20c06e044b262998a0
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/1894ef8188f06115dfc679087094bb4a
- name: meshcrunchoutputpath
value: /tmp/3726slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3726-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/1894ef8188f06115dfc679087094bb4a/logs/main.log
- name: 3726-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9cb6e245fe3633fde41e74f2e6e37d87
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/c7407323a978cef937607f89ebaac803
- name: meshcrunchoutputpath
value: /tmp/3726unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3726-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3726-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/c7407323a978cef937607f89ebaac803/logs/main.log
- name: octtreemaker-ARKFASADE
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3725defaultmeshcrunchhigh --high /tmp/3725defaultmeshcrunchpipeshigh
--high /tmp/3725slicedmeshcrunchhigh --high /tmp/3726defaultmeshcrunchhigh
--high /tmp/3726defaultmeshcrunchpipeshigh --high /tmp/3726slicedmeshcrunchhigh
--low /tmp/3725defaultmeshcrunchlow --low /tmp/3725defaultmeshcrunchpipeslow
--low /tmp/3725unslicedmeshcrunchlow --low /tmp/3726defaultmeshcrunchlow --low
/tmp/3726defaultmeshcrunchpipeslow --low /tmp/3726unslicedmeshcrunchlow --out
/tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3725defaultmeshcrunchhigh
- name: inputfile-3725defaultmeshcrunchpipeshigh
- name: inputfile-3725slicedmeshcrunchhigh
- name: inputfile-3726defaultmeshcrunchhigh
- name: inputfile-3726defaultmeshcrunchpipeshigh
- name: inputfile-3726slicedmeshcrunchhigh
- name: inputfile-3725defaultmeshcrunchlow
- name: inputfile-3725defaultmeshcrunchpipeslow
- name: inputfile-3725unslicedmeshcrunchlow
- name: inputfile-3726defaultmeshcrunchlow
- name: inputfile-3726defaultmeshcrunchpipeslow
- name: inputfile-3726unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3725defaultmeshcrunchhigh
path: /tmp/3725defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3725defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3725defaultmeshcrunchpipeshigh
path: /tmp/3725defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3725defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3725slicedmeshcrunchhigh
path: /tmp/3725slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3725slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3726defaultmeshcrunchhigh
path: /tmp/3726defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3726defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3726defaultmeshcrunchpipeshigh
path: /tmp/3726defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3726defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3726slicedmeshcrunchhigh
path: /tmp/3726slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3726slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3725defaultmeshcrunchlow
path: /tmp/3725defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3725defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3725defaultmeshcrunchpipeslow
path: /tmp/3725defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3725defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3725unslicedmeshcrunchlow
path: /tmp/3725unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3725unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3726defaultmeshcrunchlow
path: /tmp/3726defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3726defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3726defaultmeshcrunchpipeslow
path: /tmp/3726defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3726defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3726unslicedmeshcrunchlow
path: /tmp/3726unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3726unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: ARKFASADE-octtreemaker-ARKFASADE-step
steps:
- - name: octtreemaker-ARKFASADE-execute
template: octtreemaker-ARKFASADE
arguments:
parameters:
- name: inputfile-3725defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b1ddec6ca18967815562cde95ac713da
- name: inputfile-3725defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a50484693032353192b735aef07e55b3
- name: inputfile-3725slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/6428a9ce22d73421a1ba2b0c9928e2f7
- name: inputfile-3726defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/4290be8a7fc6683349a3b63dd8ce4056
- name: inputfile-3726defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/0338d18223440184e3257bb028d8bdb0
- name: inputfile-3726slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/1894ef8188f06115dfc679087094bb4a
- name: inputfile-3725defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6fe9395a8bf7320b0492e630601fee7b
- name: inputfile-3725defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/cfe53c0ea012fcd0f8efe120842fe193
- name: inputfile-3725unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/0d1409d2295b7263d0c858f21c0b40e0
- name: inputfile-3726defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/840d7260c6e6a5319da58205483b21f6
- name: inputfile-3726defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/c267fc783d576ac5f3349e2aa176c42b
- name: inputfile-3726unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/c7407323a978cef937607f89ebaac803
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/c7088351a2edb131b8c086db71bffff8
continueOn:
failed: true
- - name: ARKFASADE-octtreemaker-ARKFASADE-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: ARKFASADE-octtreemaker-ARKFASADE-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/c7088351a2edb131b8c086db71bffff8/logs/main.log
- name: obj2protobuf-ARKFASADE
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: ARKFASADE-obj2protobuf-ARKFASADE-step
steps:
- - name: obj2protobuf-ARKFASADE-execute
template: obj2protobuf-ARKFASADE
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/c7088351a2edb131b8c086db71bffff8
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/a2310630f2a3e35958cb7e57fed96b83
continueOn:
failed: true
- - name: ARKFASADE-obj2protobuf-ARKFASADE-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: ARKFASADE-obj2protobuf-ARKFASADE-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/a2310630f2a3e35958cb7e57fed96b83/logs/main.log
- name: spaceoutlines-ARKFASADE
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3725ifc2graph --storeys /tmp/3725ifc2graphstorey
--graphdb /tmp/3726ifc2graph --storeys /tmp/3726ifc2graphstorey --in /tmp/3725ifcopenshellspaces
--in /tmp/3726ifcopenshellspaces --out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3725ifc2graph
- name: inputfile-3725ifc2graphstorey
- name: inputfile-3726ifc2graph
- name: inputfile-3726ifc2graphstorey
- name: inputfile-3725ifcopenshellspaces
- name: inputfile-3726ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3725ifc2graph
path: /tmp/3725ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3725ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3725ifc2graphstorey
path: /tmp/3725ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3725ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3726ifc2graph
path: /tmp/3726ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3726ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3726ifc2graphstorey
path: /tmp/3726ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3726ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3725ifcopenshellspaces
path: /tmp/3725ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3725ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3726ifcopenshellspaces
path: /tmp/3726ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3726ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: ARKFASADE-spaceoutlines-ARKFASADE-step
steps:
- - name: spaceoutlines-ARKFASADE-execute
template: spaceoutlines-ARKFASADE
arguments:
parameters:
- name: inputfile-3725ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4f62c11e281610356911a1addd0647bb
- name: inputfile-3725ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4f62c11e281610356911a1addd0647bb.json
- name: inputfile-3726ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/04efc7cdf033d6fc995572b77357e372
- name: inputfile-3726ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/04efc7cdf033d6fc995572b77357e372.json
- name: inputfile-3725ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f6e938eab312ddd70e192092f41f4725
- name: inputfile-3726ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/57a96422ab508a15d0d4c2a4a2b6ea8e
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/7699dbe408c3d92d94aad4585cf4da55
continueOn:
failed: true
- - name: ARKFASADE-spaceoutlines-ARKFASADE-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: ARKFASADE-spaceoutlines-ARKFASADE-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/7699dbe408c3d92d94aad4585cf4da55/logs/main.log
- name: 3771-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3771-rev-2.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/c543c4160ff7f4085e2a43cbb636249e
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/c543c4160ff7f4085e2a43cbb636249e.json
continueOn:
failed: true
- - name: 3771-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/c543c4160ff7f4085e2a43cbb636249e/logs/main.log
- name: 3771-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3771-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f296a1496ce1c1097c65546c87f971cb
continueOn:
failed: true
- - name: 3771-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f296a1496ce1c1097c65546c87f971cb/logs/main.log
- name: 3771-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3771-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f41af05505f1f1e5c833844d220e0871
continueOn:
failed: true
- - name: 3771-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f41af05505f1f1e5c833844d220e0871/logs/main.log
- name: 3771-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3771-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/870c7cad7caddc3771e56771208a450a
continueOn:
failed: true
- - name: 3771-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/870c7cad7caddc3771e56771208a450a/logs/main.log
- name: 3771-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3771-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/92ed576f32e8c92db7ded4681c9b93a2
continueOn:
failed: true
- - name: 3771-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/92ed576f32e8c92db7ded4681c9b93a2/logs/main.log
- name: 3771-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3771-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/23f2e0290f98ccc685293669a9347e6a
continueOn:
failed: true
- - name: 3771-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/23f2e0290f98ccc685293669a9347e6a/logs/main.log
- name: 3771-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3771-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a34c51d4c58d18c8cefef91842c671b4
continueOn:
failed: true
- - name: 3771-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a34c51d4c58d18c8cefef91842c671b4/logs/main.log
- name: 3771--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f296a1496ce1c1097c65546c87f971cb
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b5c9be0bd9df8f0558856f68047fce50
continueOn:
failed: true
- - name: 3771--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b5c9be0bd9df8f0558856f68047fce50/logs/main.log
- name: 3771-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/92ed576f32e8c92db7ded4681c9b93a2
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/577a9bdc120076f71283bac938acf7fa
continueOn:
failed: true
- - name: 3771-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/577a9bdc120076f71283bac938acf7fa/logs/main.log
- name: 3771-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/23f2e0290f98ccc685293669a9347e6a
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/22ed6119c1a7f66f561d0cbc4f873c80
continueOn:
failed: true
- - name: 3771-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/22ed6119c1a7f66f561d0cbc4f873c80/logs/main.log
- name: 3771-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a34c51d4c58d18c8cefef91842c671b4
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/03a3d1922745b0d847131274b20ade21
continueOn:
failed: true
- - name: 3771-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/03a3d1922745b0d847131274b20ade21/logs/main.log
- name: 3771-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b5c9be0bd9df8f0558856f68047fce50
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/1d2e15385c362350e7a29b3366dc6893
- name: meshcrunchoutputpath
value: /tmp/3771defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3771-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/1d2e15385c362350e7a29b3366dc6893/logs/main.log
- name: 3771-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b5c9be0bd9df8f0558856f68047fce50
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3dd996907ca34fdf4c7e6fda80ac3951
- name: meshcrunchoutputpath
value: /tmp/3771defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3771-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3dd996907ca34fdf4c7e6fda80ac3951/logs/main.log
- name: 3771-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/577a9bdc120076f71283bac938acf7fa
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2a089e534cb37386e00a19828eff402a
- name: meshcrunchoutputpath
value: /tmp/3771defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3771-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2a089e534cb37386e00a19828eff402a/logs/main.log
- name: 3771-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/577a9bdc120076f71283bac938acf7fa
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ebe845212040ddbb2444a64b94b3a48c
- name: meshcrunchoutputpath
value: /tmp/3771defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3771-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ebe845212040ddbb2444a64b94b3a48c/logs/main.log
- name: 3771-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/22ed6119c1a7f66f561d0cbc4f873c80
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e4c396cc0a0dd8f463670c9cb75ba08e
- name: meshcrunchoutputpath
value: /tmp/3771slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3771-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e4c396cc0a0dd8f463670c9cb75ba08e/logs/main.log
- name: 3771-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/03a3d1922745b0d847131274b20ade21
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/97ca794ffbfd4e755d34c596e9b5a7dd
- name: meshcrunchoutputpath
value: /tmp/3771unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3771-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3771-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/97ca794ffbfd4e755d34c596e9b5a7dd/logs/main.log
- name: octtreemaker-VAOEKSI
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3771defaultmeshcrunchhigh --high /tmp/3771defaultmeshcrunchpipeshigh
--high /tmp/3771slicedmeshcrunchhigh --low /tmp/3771defaultmeshcrunchlow --low
/tmp/3771defaultmeshcrunchpipeslow --low /tmp/3771unslicedmeshcrunchlow --out
/tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3771defaultmeshcrunchhigh
- name: inputfile-3771defaultmeshcrunchpipeshigh
- name: inputfile-3771slicedmeshcrunchhigh
- name: inputfile-3771defaultmeshcrunchlow
- name: inputfile-3771defaultmeshcrunchpipeslow
- name: inputfile-3771unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3771defaultmeshcrunchhigh
path: /tmp/3771defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3771defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3771defaultmeshcrunchpipeshigh
path: /tmp/3771defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3771defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3771slicedmeshcrunchhigh
path: /tmp/3771slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3771slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3771defaultmeshcrunchlow
path: /tmp/3771defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3771defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3771defaultmeshcrunchpipeslow
path: /tmp/3771defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3771defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3771unslicedmeshcrunchlow
path: /tmp/3771unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3771unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: VAOEKSI-octtreemaker-VAOEKSI-step
steps:
- - name: octtreemaker-VAOEKSI-execute
template: octtreemaker-VAOEKSI
arguments:
parameters:
- name: inputfile-3771defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/1d2e15385c362350e7a29b3366dc6893
- name: inputfile-3771defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2a089e534cb37386e00a19828eff402a
- name: inputfile-3771slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e4c396cc0a0dd8f463670c9cb75ba08e
- name: inputfile-3771defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3dd996907ca34fdf4c7e6fda80ac3951
- name: inputfile-3771defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ebe845212040ddbb2444a64b94b3a48c
- name: inputfile-3771unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/97ca794ffbfd4e755d34c596e9b5a7dd
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/5ff8e5b1f717058d7a93fcef31f11006
continueOn:
failed: true
- - name: VAOEKSI-octtreemaker-VAOEKSI-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: VAOEKSI-octtreemaker-VAOEKSI-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/5ff8e5b1f717058d7a93fcef31f11006/logs/main.log
- name: obj2protobuf-VAOEKSI
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: VAOEKSI-obj2protobuf-VAOEKSI-step
steps:
- - name: obj2protobuf-VAOEKSI-execute
template: obj2protobuf-VAOEKSI
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/5ff8e5b1f717058d7a93fcef31f11006
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/943953d04d2673794f73ad9aea311494
continueOn:
failed: true
- - name: VAOEKSI-obj2protobuf-VAOEKSI-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: VAOEKSI-obj2protobuf-VAOEKSI-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/943953d04d2673794f73ad9aea311494/logs/main.log
- name: spaceoutlines-VAOEKSI
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3771ifc2graph --storeys /tmp/3771ifc2graphstorey
--in /tmp/3771ifcopenshellspaces --out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3771ifc2graph
- name: inputfile-3771ifc2graphstorey
- name: inputfile-3771ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3771ifc2graph
path: /tmp/3771ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3771ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3771ifc2graphstorey
path: /tmp/3771ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3771ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3771ifcopenshellspaces
path: /tmp/3771ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3771ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: VAOEKSI-spaceoutlines-VAOEKSI-step
steps:
- - name: spaceoutlines-VAOEKSI-execute
template: spaceoutlines-VAOEKSI
arguments:
parameters:
- name: inputfile-3771ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/c543c4160ff7f4085e2a43cbb636249e
- name: inputfile-3771ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/c543c4160ff7f4085e2a43cbb636249e.json
- name: inputfile-3771ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/870c7cad7caddc3771e56771208a450a
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/63aef7ce6866227d374927f3c30d0cfe
continueOn:
failed: true
- - name: VAOEKSI-spaceoutlines-VAOEKSI-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: VAOEKSI-spaceoutlines-VAOEKSI-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/63aef7ce6866227d374927f3c30d0cfe/logs/main.log
- name: 4823-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-4823-rev-2.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/59394243be8ec60b6e831615ae63b2c7
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/59394243be8ec60b6e831615ae63b2c7.json
continueOn:
failed: true
- - name: 4823-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/59394243be8ec60b6e831615ae63b2c7/logs/main.log
- name: 4823-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-4823-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/48f2a46ec07618f781643629471e4eeb
continueOn:
failed: true
- - name: 4823-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/48f2a46ec07618f781643629471e4eeb/logs/main.log
- name: 4823-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-4823-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b5735674e5a56baa4454916199e571da
continueOn:
failed: true
- - name: 4823-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b5735674e5a56baa4454916199e571da/logs/main.log
- name: 4823-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-4823-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/97dcb532bd112d6c89f1a401b7547753
continueOn:
failed: true
- - name: 4823-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/97dcb532bd112d6c89f1a401b7547753/logs/main.log
- name: 4823-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-4823-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b13360c218ee1e03692a7a9ab6a9b7d2
continueOn:
failed: true
- - name: 4823-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b13360c218ee1e03692a7a9ab6a9b7d2/logs/main.log
- name: 4823-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-4823-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9940cb387d85b72fa8657a6df7a1c759
continueOn:
failed: true
- - name: 4823-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9940cb387d85b72fa8657a6df7a1c759/logs/main.log
- name: 4823-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-4823-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ed6010a9bef9436b8b00e6c47228be3f
continueOn:
failed: true
- - name: 4823-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ed6010a9bef9436b8b00e6c47228be3f/logs/main.log
- name: 4823--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/48f2a46ec07618f781643629471e4eeb
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e1f1704c797546148db5d580e35a38a2
continueOn:
failed: true
- - name: 4823--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e1f1704c797546148db5d580e35a38a2/logs/main.log
- name: 4823-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b13360c218ee1e03692a7a9ab6a9b7d2
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c31d54ed6109c79e7dba1da5649a395c
continueOn:
failed: true
- - name: 4823-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c31d54ed6109c79e7dba1da5649a395c/logs/main.log
- name: 4823-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9940cb387d85b72fa8657a6df7a1c759
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ba04804293ff84532c56764153669a7c
continueOn:
failed: true
- - name: 4823-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ba04804293ff84532c56764153669a7c/logs/main.log
- name: 4823-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ed6010a9bef9436b8b00e6c47228be3f
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b53c8d734d4277e11128d8df7389f986
continueOn:
failed: true
- - name: 4823-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b53c8d734d4277e11128d8df7389f986/logs/main.log
- name: 4823-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e1f1704c797546148db5d580e35a38a2
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/90cd2e5a3d1a4f17e467dc514c225fd8
- name: meshcrunchoutputpath
value: /tmp/4823defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 4823-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/90cd2e5a3d1a4f17e467dc514c225fd8/logs/main.log
- name: 4823-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e1f1704c797546148db5d580e35a38a2
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9eb0926797d21cc0e58b11dd3a2cc69f
- name: meshcrunchoutputpath
value: /tmp/4823defaultmeshcrunchlow
continueOn:
failed: true
- - name: 4823-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9eb0926797d21cc0e58b11dd3a2cc69f/logs/main.log
- name: 4823-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c31d54ed6109c79e7dba1da5649a395c
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ca81961df1910bccf922ef8be80ea70a
- name: meshcrunchoutputpath
value: /tmp/4823defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 4823-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ca81961df1910bccf922ef8be80ea70a/logs/main.log
- name: 4823-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c31d54ed6109c79e7dba1da5649a395c
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/89d6e90734ac95db79f50b45b0828aa2
- name: meshcrunchoutputpath
value: /tmp/4823defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 4823-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/89d6e90734ac95db79f50b45b0828aa2/logs/main.log
- name: 4823-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ba04804293ff84532c56764153669a7c
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ab87e54d4022586ae156582e2db7d339
- name: meshcrunchoutputpath
value: /tmp/4823slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 4823-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ab87e54d4022586ae156582e2db7d339/logs/main.log
- name: 4823-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b53c8d734d4277e11128d8df7389f986
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/2ce7969cd73ee3caa62c90e6fcac7e8f
- name: meshcrunchoutputpath
value: /tmp/4823unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 4823-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 4823-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/2ce7969cd73ee3caa62c90e6fcac7e8f/logs/main.log
- name: octtreemaker-IFCMALEGRID
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/4823defaultmeshcrunchhigh --high /tmp/4823defaultmeshcrunchpipeshigh
--high /tmp/4823slicedmeshcrunchhigh --low /tmp/4823defaultmeshcrunchlow --low
/tmp/4823defaultmeshcrunchpipeslow --low /tmp/4823unslicedmeshcrunchlow --out
/tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-4823defaultmeshcrunchhigh
- name: inputfile-4823defaultmeshcrunchpipeshigh
- name: inputfile-4823slicedmeshcrunchhigh
- name: inputfile-4823defaultmeshcrunchlow
- name: inputfile-4823defaultmeshcrunchpipeslow
- name: inputfile-4823unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-4823defaultmeshcrunchhigh
path: /tmp/4823defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-4823defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-4823defaultmeshcrunchpipeshigh
path: /tmp/4823defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-4823defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-4823slicedmeshcrunchhigh
path: /tmp/4823slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-4823slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-4823defaultmeshcrunchlow
path: /tmp/4823defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-4823defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-4823defaultmeshcrunchpipeslow
path: /tmp/4823defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-4823defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-4823unslicedmeshcrunchlow
path: /tmp/4823unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-4823unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: IFCMALEGRID-octtreemaker-IFCMALEGRID-step
steps:
- - name: octtreemaker-IFCMALEGRID-execute
template: octtreemaker-IFCMALEGRID
arguments:
parameters:
- name: inputfile-4823defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/90cd2e5a3d1a4f17e467dc514c225fd8
- name: inputfile-4823defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ca81961df1910bccf922ef8be80ea70a
- name: inputfile-4823slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ab87e54d4022586ae156582e2db7d339
- name: inputfile-4823defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9eb0926797d21cc0e58b11dd3a2cc69f
- name: inputfile-4823defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/89d6e90734ac95db79f50b45b0828aa2
- name: inputfile-4823unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/2ce7969cd73ee3caa62c90e6fcac7e8f
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/bd9a1b256675f88cc7d71b1b7ebad6ed
continueOn:
failed: true
- - name: IFCMALEGRID-octtreemaker-IFCMALEGRID-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: IFCMALEGRID-octtreemaker-IFCMALEGRID-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/bd9a1b256675f88cc7d71b1b7ebad6ed/logs/main.log
- name: obj2protobuf-IFCMALEGRID
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: IFCMALEGRID-obj2protobuf-IFCMALEGRID-step
steps:
- - name: obj2protobuf-IFCMALEGRID-execute
template: obj2protobuf-IFCMALEGRID
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/bd9a1b256675f88cc7d71b1b7ebad6ed
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/dd099e2415a1e77e5644e18ecfdf3fc6
continueOn:
failed: true
- - name: IFCMALEGRID-obj2protobuf-IFCMALEGRID-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: IFCMALEGRID-obj2protobuf-IFCMALEGRID-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/dd099e2415a1e77e5644e18ecfdf3fc6/logs/main.log
- name: spaceoutlines-IFCMALEGRID
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/4823ifc2graph --storeys /tmp/4823ifc2graphstorey
--in /tmp/4823ifcopenshellspaces --out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-4823ifc2graph
- name: inputfile-4823ifc2graphstorey
- name: inputfile-4823ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-4823ifc2graph
path: /tmp/4823ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-4823ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-4823ifc2graphstorey
path: /tmp/4823ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-4823ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-4823ifcopenshellspaces
path: /tmp/4823ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-4823ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: IFCMALEGRID-spaceoutlines-IFCMALEGRID-step
steps:
- - name: spaceoutlines-IFCMALEGRID-execute
template: spaceoutlines-IFCMALEGRID
arguments:
parameters:
- name: inputfile-4823ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/59394243be8ec60b6e831615ae63b2c7
- name: inputfile-4823ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/59394243be8ec60b6e831615ae63b2c7.json
- name: inputfile-4823ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/97dcb532bd112d6c89f1a401b7547753
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/2ee17f79c6469ab4da96640fcd7d921c
continueOn:
failed: true
- - name: IFCMALEGRID-spaceoutlines-IFCMALEGRID-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: IFCMALEGRID-spaceoutlines-IFCMALEGRID-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/2ee17f79c6469ab4da96640fcd7d921c/logs/main.log
- name: 3747-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3747-rev-2.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/3fb563e46167457ec94cb615aeca0637
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/3fb563e46167457ec94cb615aeca0637.json
continueOn:
failed: true
- - name: 3747-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/3fb563e46167457ec94cb615aeca0637/logs/main.log
- name: 3747-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3747-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c066bd2c6c2be0946c503de2f1af9794
continueOn:
failed: true
- - name: 3747-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c066bd2c6c2be0946c503de2f1af9794/logs/main.log
- name: 3747-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3747-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/56451a78c1eca2ec40925a7d8387ae68
continueOn:
failed: true
- - name: 3747-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/56451a78c1eca2ec40925a7d8387ae68/logs/main.log
- name: 3747-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3747-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f6f8ec197b2593ba9629e5947921698e
continueOn:
failed: true
- - name: 3747-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f6f8ec197b2593ba9629e5947921698e/logs/main.log
- name: 3747-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3747-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8bacaeb0b144bc09e4b5fd8f0aac61e0
continueOn:
failed: true
- - name: 3747-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8bacaeb0b144bc09e4b5fd8f0aac61e0/logs/main.log
- name: 3747-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3747-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0a5b7180607fc8e3735cc9f32bcec3b1
continueOn:
failed: true
- - name: 3747-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0a5b7180607fc8e3735cc9f32bcec3b1/logs/main.log
- name: 3747-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3747-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3e0962a359e9cf52391e5bfccdf414b7
continueOn:
failed: true
- - name: 3747-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3e0962a359e9cf52391e5bfccdf414b7/logs/main.log
- name: 3747--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c066bd2c6c2be0946c503de2f1af9794
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/bab9bb3f04cb7b7258e7aa27446a6cbe
continueOn:
failed: true
- - name: 3747--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/bab9bb3f04cb7b7258e7aa27446a6cbe/logs/main.log
- name: 3747-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8bacaeb0b144bc09e4b5fd8f0aac61e0
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/439c18ca4da6263b1e042ddde5c0055f
continueOn:
failed: true
- - name: 3747-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/439c18ca4da6263b1e042ddde5c0055f/logs/main.log
- name: 3747-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0a5b7180607fc8e3735cc9f32bcec3b1
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/1eb346a43bed53c324776c7454e4974b
continueOn:
failed: true
- - name: 3747-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/1eb346a43bed53c324776c7454e4974b/logs/main.log
- name: 3747-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3e0962a359e9cf52391e5bfccdf414b7
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d6448e37101089a2a866a8e3719918fc
continueOn:
failed: true
- - name: 3747-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d6448e37101089a2a866a8e3719918fc/logs/main.log
- name: 3747-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/bab9bb3f04cb7b7258e7aa27446a6cbe
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a949e714fbddec42d75cdf8fde4bb453
- name: meshcrunchoutputpath
value: /tmp/3747defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3747-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a949e714fbddec42d75cdf8fde4bb453/logs/main.log
- name: 3747-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/bab9bb3f04cb7b7258e7aa27446a6cbe
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/328bbce6e540d43816c4eb5e5a55bd26
- name: meshcrunchoutputpath
value: /tmp/3747defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3747-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/328bbce6e540d43816c4eb5e5a55bd26/logs/main.log
- name: 3747-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/439c18ca4da6263b1e042ddde5c0055f
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fdfec2cc1445ed14f13c97e56e361481
- name: meshcrunchoutputpath
value: /tmp/3747defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3747-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fdfec2cc1445ed14f13c97e56e361481/logs/main.log
- name: 3747-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/439c18ca4da6263b1e042ddde5c0055f
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1303c9ff6d366d6394856638b7547bfb
- name: meshcrunchoutputpath
value: /tmp/3747defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3747-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1303c9ff6d366d6394856638b7547bfb/logs/main.log
- name: 3747-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/1eb346a43bed53c324776c7454e4974b
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/9f51d82a7011eeabed2e681c81b6ad4d
- name: meshcrunchoutputpath
value: /tmp/3747slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3747-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/9f51d82a7011eeabed2e681c81b6ad4d/logs/main.log
- name: 3747-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d6448e37101089a2a866a8e3719918fc
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/94965a96e49ddcd112b51dc83ff9d6a5
- name: meshcrunchoutputpath
value: /tmp/3747unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3747-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3747-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/94965a96e49ddcd112b51dc83ff9d6a5/logs/main.log
- name: octtreemaker-FELLESOPPHENG
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3747defaultmeshcrunchhigh --high /tmp/3747defaultmeshcrunchpipeshigh
--high /tmp/3747slicedmeshcrunchhigh --low /tmp/3747defaultmeshcrunchlow --low
/tmp/3747defaultmeshcrunchpipeslow --low /tmp/3747unslicedmeshcrunchlow --out
/tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3747defaultmeshcrunchhigh
- name: inputfile-3747defaultmeshcrunchpipeshigh
- name: inputfile-3747slicedmeshcrunchhigh
- name: inputfile-3747defaultmeshcrunchlow
- name: inputfile-3747defaultmeshcrunchpipeslow
- name: inputfile-3747unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3747defaultmeshcrunchhigh
path: /tmp/3747defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3747defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3747defaultmeshcrunchpipeshigh
path: /tmp/3747defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3747defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3747slicedmeshcrunchhigh
path: /tmp/3747slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3747slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3747defaultmeshcrunchlow
path: /tmp/3747defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3747defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3747defaultmeshcrunchpipeslow
path: /tmp/3747defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3747defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3747unslicedmeshcrunchlow
path: /tmp/3747unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3747unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: FELLESOPPHENG-octtreemaker-FELLESOPPHENG-step
steps:
- - name: octtreemaker-FELLESOPPHENG-execute
template: octtreemaker-FELLESOPPHENG
arguments:
parameters:
- name: inputfile-3747defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a949e714fbddec42d75cdf8fde4bb453
- name: inputfile-3747defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fdfec2cc1445ed14f13c97e56e361481
- name: inputfile-3747slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/9f51d82a7011eeabed2e681c81b6ad4d
- name: inputfile-3747defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/328bbce6e540d43816c4eb5e5a55bd26
- name: inputfile-3747defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1303c9ff6d366d6394856638b7547bfb
- name: inputfile-3747unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/94965a96e49ddcd112b51dc83ff9d6a5
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/965dbaf2b8c52102c223e3b705189379
continueOn:
failed: true
- - name: FELLESOPPHENG-octtreemaker-FELLESOPPHENG-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: FELLESOPPHENG-octtreemaker-FELLESOPPHENG-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/965dbaf2b8c52102c223e3b705189379/logs/main.log
- name: obj2protobuf-FELLESOPPHENG
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: FELLESOPPHENG-obj2protobuf-FELLESOPPHENG-step
steps:
- - name: obj2protobuf-FELLESOPPHENG-execute
template: obj2protobuf-FELLESOPPHENG
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/965dbaf2b8c52102c223e3b705189379
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/ca9e9e8ac19c25c8b895dbc6e1f992c6
continueOn:
failed: true
- - name: FELLESOPPHENG-obj2protobuf-FELLESOPPHENG-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: FELLESOPPHENG-obj2protobuf-FELLESOPPHENG-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/ca9e9e8ac19c25c8b895dbc6e1f992c6/logs/main.log
- name: spaceoutlines-FELLESOPPHENG
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3747ifc2graph --storeys /tmp/3747ifc2graphstorey
--in /tmp/3747ifcopenshellspaces --out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3747ifc2graph
- name: inputfile-3747ifc2graphstorey
- name: inputfile-3747ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3747ifc2graph
path: /tmp/3747ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3747ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3747ifc2graphstorey
path: /tmp/3747ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3747ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3747ifcopenshellspaces
path: /tmp/3747ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3747ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: FELLESOPPHENG-spaceoutlines-FELLESOPPHENG-step
steps:
- - name: spaceoutlines-FELLESOPPHENG-execute
template: spaceoutlines-FELLESOPPHENG
arguments:
parameters:
- name: inputfile-3747ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/3fb563e46167457ec94cb615aeca0637
- name: inputfile-3747ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/3fb563e46167457ec94cb615aeca0637.json
- name: inputfile-3747ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f6f8ec197b2593ba9629e5947921698e
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/bff6df552f7c5c4cee2a30f386585b5c
continueOn:
failed: true
- - name: FELLESOPPHENG-spaceoutlines-FELLESOPPHENG-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: FELLESOPPHENG-spaceoutlines-FELLESOPPHENG-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/bff6df552f7c5c4cee2a30f386585b5c/logs/main.log
- name: 3752-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3752-rev-3.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8137e2198faace372b9cc3c45a2844d1
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8137e2198faace372b9cc3c45a2844d1.json
continueOn:
failed: true
- - name: 3752-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8137e2198faace372b9cc3c45a2844d1/logs/main.log
- name: 3752-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3752-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3c6313b538858e05081c9202760ed4da
continueOn:
failed: true
- - name: 3752-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3c6313b538858e05081c9202760ed4da/logs/main.log
- name: 3752-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3752-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1bd32b5208eeb438b35aa6a7b8732782
continueOn:
failed: true
- - name: 3752-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1bd32b5208eeb438b35aa6a7b8732782/logs/main.log
- name: 3752-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3752-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/acf1002de6a03c667162a7002b3ea9a0
continueOn:
failed: true
- - name: 3752-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/acf1002de6a03c667162a7002b3ea9a0/logs/main.log
- name: 3752-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3752-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0abb14e39b8adf604297b6fbdbf086e3
continueOn:
failed: true
- - name: 3752-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0abb14e39b8adf604297b6fbdbf086e3/logs/main.log
- name: 3752-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3752-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ca3117aa79e980fbcc81c4f7dceb5647
continueOn:
failed: true
- - name: 3752-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ca3117aa79e980fbcc81c4f7dceb5647/logs/main.log
- name: 3752-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3752-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/726513fb0535d6e805f8ade3b36ea338
continueOn:
failed: true
- - name: 3752-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/726513fb0535d6e805f8ade3b36ea338/logs/main.log
- name: 3752--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3c6313b538858e05081c9202760ed4da
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/74a60dcda23648d5ef2a79c054443f01
continueOn:
failed: true
- - name: 3752--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/74a60dcda23648d5ef2a79c054443f01/logs/main.log
- name: 3752-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0abb14e39b8adf604297b6fbdbf086e3
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/eb478be9ec27a86c53f1fcda6b26b0ab
continueOn:
failed: true
- - name: 3752-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/eb478be9ec27a86c53f1fcda6b26b0ab/logs/main.log
- name: 3752-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ca3117aa79e980fbcc81c4f7dceb5647
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c7869b8749859928ad2413dfa6239e90
continueOn:
failed: true
- - name: 3752-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c7869b8749859928ad2413dfa6239e90/logs/main.log
- name: 3752-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/726513fb0535d6e805f8ade3b36ea338
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5978b263f0b55431c38a643c3764ac44
continueOn:
failed: true
- - name: 3752-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5978b263f0b55431c38a643c3764ac44/logs/main.log
- name: 3752-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/74a60dcda23648d5ef2a79c054443f01
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b0e59f23069133688b740c3a4fab5d29
- name: meshcrunchoutputpath
value: /tmp/3752defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3752-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b0e59f23069133688b740c3a4fab5d29/logs/main.log
- name: 3752-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/74a60dcda23648d5ef2a79c054443f01
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/5668b1b293aba51236536fca7276b83b
- name: meshcrunchoutputpath
value: /tmp/3752defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3752-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/5668b1b293aba51236536fca7276b83b/logs/main.log
- name: 3752-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/eb478be9ec27a86c53f1fcda6b26b0ab
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fe3543bb28c4ace6a7589d9421f1e5c5
- name: meshcrunchoutputpath
value: /tmp/3752defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3752-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fe3543bb28c4ace6a7589d9421f1e5c5/logs/main.log
- name: 3752-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/eb478be9ec27a86c53f1fcda6b26b0ab
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/4327b29c365dc72af7975b7146dde104
- name: meshcrunchoutputpath
value: /tmp/3752defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3752-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/4327b29c365dc72af7975b7146dde104/logs/main.log
- name: 3752-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c7869b8749859928ad2413dfa6239e90
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/04266d49f72548ac695409d1d80fa45f
- name: meshcrunchoutputpath
value: /tmp/3752slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3752-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/04266d49f72548ac695409d1d80fa45f/logs/main.log
- name: 3752-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5978b263f0b55431c38a643c3764ac44
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a7d9862ea87038e24091865bf74504a5
- name: meshcrunchoutputpath
value: /tmp/3752unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3752-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3752-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a7d9862ea87038e24091865bf74504a5/logs/main.log
- name: 3753-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3753-rev-4.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4ccfef57b9c05d449aa5b08d0e40f565
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4ccfef57b9c05d449aa5b08d0e40f565.json
continueOn:
failed: true
- - name: 3753-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4ccfef57b9c05d449aa5b08d0e40f565/logs/main.log
- name: 3753-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3753-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9272cd8ae95307589876e0dd4e6cb057
continueOn:
failed: true
- - name: 3753-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9272cd8ae95307589876e0dd4e6cb057/logs/main.log
- name: 3753-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3753-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b1657eccf802f08a415e8027b7ec958a
continueOn:
failed: true
- - name: 3753-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b1657eccf802f08a415e8027b7ec958a/logs/main.log
- name: 3753-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3753-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/039d82c7eb859c98ca60dac9c95af113
continueOn:
failed: true
- - name: 3753-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/039d82c7eb859c98ca60dac9c95af113/logs/main.log
- name: 3753-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3753-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/659ac0d9d8f7c6f61246018d8ca18272
continueOn:
failed: true
- - name: 3753-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/659ac0d9d8f7c6f61246018d8ca18272/logs/main.log
- name: 3753-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3753-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/afc19c7a842e61a0c5f7a1aaa9c2ba69
continueOn:
failed: true
- - name: 3753-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/afc19c7a842e61a0c5f7a1aaa9c2ba69/logs/main.log
- name: 3753-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3753-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/d2662b033c64a724fdeddf7448665820
continueOn:
failed: true
- - name: 3753-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/d2662b033c64a724fdeddf7448665820/logs/main.log
- name: 3753--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9272cd8ae95307589876e0dd4e6cb057
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c217f8193547c9961196a48c5b385391
continueOn:
failed: true
- - name: 3753--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c217f8193547c9961196a48c5b385391/logs/main.log
- name: 3753-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/659ac0d9d8f7c6f61246018d8ca18272
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/545f9019ff452e07b8b79da087a3087f
continueOn:
failed: true
- - name: 3753-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/545f9019ff452e07b8b79da087a3087f/logs/main.log
- name: 3753-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/afc19c7a842e61a0c5f7a1aaa9c2ba69
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/2a35180cd7be868771e0f4f8a0c61036
continueOn:
failed: true
- - name: 3753-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/2a35180cd7be868771e0f4f8a0c61036/logs/main.log
- name: 3753-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/d2662b033c64a724fdeddf7448665820
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/458ec9160836df2bad8270fd263aded5
continueOn:
failed: true
- - name: 3753-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/458ec9160836df2bad8270fd263aded5/logs/main.log
- name: 3753-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c217f8193547c9961196a48c5b385391
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/cba0e506da389cc320613d0c41c8dc78
- name: meshcrunchoutputpath
value: /tmp/3753defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3753-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/cba0e506da389cc320613d0c41c8dc78/logs/main.log
- name: 3753-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c217f8193547c9961196a48c5b385391
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/40338707a9cc3e3dea0254f34865adcf
- name: meshcrunchoutputpath
value: /tmp/3753defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3753-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/40338707a9cc3e3dea0254f34865adcf/logs/main.log
- name: 3753-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/545f9019ff452e07b8b79da087a3087f
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/92f8450a5259839e2619843d256c46c4
- name: meshcrunchoutputpath
value: /tmp/3753defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3753-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/92f8450a5259839e2619843d256c46c4/logs/main.log
- name: 3753-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/545f9019ff452e07b8b79da087a3087f
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ff09f036ea2e9b10aafda245d8627353
- name: meshcrunchoutputpath
value: /tmp/3753defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3753-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ff09f036ea2e9b10aafda245d8627353/logs/main.log
- name: 3753-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/2a35180cd7be868771e0f4f8a0c61036
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/c984ce39118abe236921346bef508447
- name: meshcrunchoutputpath
value: /tmp/3753slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3753-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/c984ce39118abe236921346bef508447/logs/main.log
- name: 3753-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/458ec9160836df2bad8270fd263aded5
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3058c55618814a5623ecfa7ed3613183
- name: meshcrunchoutputpath
value: /tmp/3753unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3753-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3753-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3058c55618814a5623ecfa7ed3613183/logs/main.log
- name: 3751-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3751-rev-4.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/22d9bd0aa03234687783aa70ec20a197
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/22d9bd0aa03234687783aa70ec20a197.json
continueOn:
failed: true
- - name: 3751-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/22d9bd0aa03234687783aa70ec20a197/logs/main.log
- name: 3751-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3751-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e64b8f04ffaa092178f6907169fb566f
continueOn:
failed: true
- - name: 3751-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e64b8f04ffaa092178f6907169fb566f/logs/main.log
- name: 3751-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3751-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3552eeb01636c8528550c4ae4b1f74ac
continueOn:
failed: true
- - name: 3751-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3552eeb01636c8528550c4ae4b1f74ac/logs/main.log
- name: 3751-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3751-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/12334a7cd9199c2567645caa93413489
continueOn:
failed: true
- - name: 3751-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/12334a7cd9199c2567645caa93413489/logs/main.log
- name: 3751-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3751-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/286515238ba2aa28c4e7c86f45f29578
continueOn:
failed: true
- - name: 3751-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/286515238ba2aa28c4e7c86f45f29578/logs/main.log
- name: 3751-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3751-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8a288aaf70a5ef4f94f2ec94e247cfe6
continueOn:
failed: true
- - name: 3751-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8a288aaf70a5ef4f94f2ec94e247cfe6/logs/main.log
- name: 3751-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3751-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a9fadb79f82064a32a662a38177b654e
continueOn:
failed: true
- - name: 3751-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a9fadb79f82064a32a662a38177b654e/logs/main.log
- name: 3751--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e64b8f04ffaa092178f6907169fb566f
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5ae6397f49d8225e2b5cfd67495a3ddc
continueOn:
failed: true
- - name: 3751--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5ae6397f49d8225e2b5cfd67495a3ddc/logs/main.log
- name: 3751-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/286515238ba2aa28c4e7c86f45f29578
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9a33475a65e5e1585bb1ae44188f56ba
continueOn:
failed: true
- - name: 3751-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9a33475a65e5e1585bb1ae44188f56ba/logs/main.log
- name: 3751-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8a288aaf70a5ef4f94f2ec94e247cfe6
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/eb70b699384f295371dad3bf6fbeb8d0
continueOn:
failed: true
- - name: 3751-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/eb70b699384f295371dad3bf6fbeb8d0/logs/main.log
- name: 3751-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a9fadb79f82064a32a662a38177b654e
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/19d3e85bc83201b1161190a58d51266f
continueOn:
failed: true
- - name: 3751-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/19d3e85bc83201b1161190a58d51266f/logs/main.log
- name: 3751-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5ae6397f49d8225e2b5cfd67495a3ddc
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/46a521e55f63b6d7364956aaaa83ddd3
- name: meshcrunchoutputpath
value: /tmp/3751defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3751-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/46a521e55f63b6d7364956aaaa83ddd3/logs/main.log
- name: 3751-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5ae6397f49d8225e2b5cfd67495a3ddc
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/fd22680c55f1dbdb8e87ac43e7a66174
- name: meshcrunchoutputpath
value: /tmp/3751defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3751-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/fd22680c55f1dbdb8e87ac43e7a66174/logs/main.log
- name: 3751-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9a33475a65e5e1585bb1ae44188f56ba
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/637d07cde83ec6a64b3a801abac371ac
- name: meshcrunchoutputpath
value: /tmp/3751defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3751-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/637d07cde83ec6a64b3a801abac371ac/logs/main.log
- name: 3751-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9a33475a65e5e1585bb1ae44188f56ba
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/27fc34ffc74a9acbd6969dd2594a5478
- name: meshcrunchoutputpath
value: /tmp/3751defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3751-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/27fc34ffc74a9acbd6969dd2594a5478/logs/main.log
- name: 3751-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/eb70b699384f295371dad3bf6fbeb8d0
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/879bf98fb6a032085432e5c69b72efc0
- name: meshcrunchoutputpath
value: /tmp/3751slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3751-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/879bf98fb6a032085432e5c69b72efc0/logs/main.log
- name: 3751-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/19d3e85bc83201b1161190a58d51266f
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/af4b529d6940a9b872eaa40dc198621e
- name: meshcrunchoutputpath
value: /tmp/3751unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3751-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3751-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/af4b529d6940a9b872eaa40dc198621e/logs/main.log
- name: octtreemaker-RIVSPRINKLER
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3752defaultmeshcrunchhigh --high /tmp/3752defaultmeshcrunchpipeshigh
--high /tmp/3752slicedmeshcrunchhigh --high /tmp/3753defaultmeshcrunchhigh
--high /tmp/3753defaultmeshcrunchpipeshigh --high /tmp/3753slicedmeshcrunchhigh
--high /tmp/3751defaultmeshcrunchhigh --high /tmp/3751defaultmeshcrunchpipeshigh
--high /tmp/3751slicedmeshcrunchhigh --low /tmp/3752defaultmeshcrunchlow --low
/tmp/3752defaultmeshcrunchpipeslow --low /tmp/3752unslicedmeshcrunchlow --low
/tmp/3753defaultmeshcrunchlow --low /tmp/3753defaultmeshcrunchpipeslow --low
/tmp/3753unslicedmeshcrunchlow --low /tmp/3751defaultmeshcrunchlow --low /tmp/3751defaultmeshcrunchpipeslow
--low /tmp/3751unslicedmeshcrunchlow --out /tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3752defaultmeshcrunchhigh
- name: inputfile-3752defaultmeshcrunchpipeshigh
- name: inputfile-3752slicedmeshcrunchhigh
- name: inputfile-3753defaultmeshcrunchhigh
- name: inputfile-3753defaultmeshcrunchpipeshigh
- name: inputfile-3753slicedmeshcrunchhigh
- name: inputfile-3751defaultmeshcrunchhigh
- name: inputfile-3751defaultmeshcrunchpipeshigh
- name: inputfile-3751slicedmeshcrunchhigh
- name: inputfile-3752defaultmeshcrunchlow
- name: inputfile-3752defaultmeshcrunchpipeslow
- name: inputfile-3752unslicedmeshcrunchlow
- name: inputfile-3753defaultmeshcrunchlow
- name: inputfile-3753defaultmeshcrunchpipeslow
- name: inputfile-3753unslicedmeshcrunchlow
- name: inputfile-3751defaultmeshcrunchlow
- name: inputfile-3751defaultmeshcrunchpipeslow
- name: inputfile-3751unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3752defaultmeshcrunchhigh
path: /tmp/3752defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3752defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3752defaultmeshcrunchpipeshigh
path: /tmp/3752defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3752defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3752slicedmeshcrunchhigh
path: /tmp/3752slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3752slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3753defaultmeshcrunchhigh
path: /tmp/3753defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3753defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3753defaultmeshcrunchpipeshigh
path: /tmp/3753defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3753defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3753slicedmeshcrunchhigh
path: /tmp/3753slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3753slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3751defaultmeshcrunchhigh
path: /tmp/3751defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3751defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3751defaultmeshcrunchpipeshigh
path: /tmp/3751defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3751defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3751slicedmeshcrunchhigh
path: /tmp/3751slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3751slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3752defaultmeshcrunchlow
path: /tmp/3752defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3752defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3752defaultmeshcrunchpipeslow
path: /tmp/3752defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3752defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3752unslicedmeshcrunchlow
path: /tmp/3752unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3752unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3753defaultmeshcrunchlow
path: /tmp/3753defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3753defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3753defaultmeshcrunchpipeslow
path: /tmp/3753defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3753defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3753unslicedmeshcrunchlow
path: /tmp/3753unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3753unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3751defaultmeshcrunchlow
path: /tmp/3751defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3751defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3751defaultmeshcrunchpipeslow
path: /tmp/3751defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3751defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3751unslicedmeshcrunchlow
path: /tmp/3751unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3751unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIVSPRINKLER-octtreemaker-RIVSPRINKLER-step
steps:
- - name: octtreemaker-RIVSPRINKLER-execute
template: octtreemaker-RIVSPRINKLER
arguments:
parameters:
- name: inputfile-3752defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b0e59f23069133688b740c3a4fab5d29
- name: inputfile-3752defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fe3543bb28c4ace6a7589d9421f1e5c5
- name: inputfile-3752slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/04266d49f72548ac695409d1d80fa45f
- name: inputfile-3753defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/cba0e506da389cc320613d0c41c8dc78
- name: inputfile-3753defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/92f8450a5259839e2619843d256c46c4
- name: inputfile-3753slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/c984ce39118abe236921346bef508447
- name: inputfile-3751defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/46a521e55f63b6d7364956aaaa83ddd3
- name: inputfile-3751defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/637d07cde83ec6a64b3a801abac371ac
- name: inputfile-3751slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/879bf98fb6a032085432e5c69b72efc0
- name: inputfile-3752defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/5668b1b293aba51236536fca7276b83b
- name: inputfile-3752defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/4327b29c365dc72af7975b7146dde104
- name: inputfile-3752unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a7d9862ea87038e24091865bf74504a5
- name: inputfile-3753defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/40338707a9cc3e3dea0254f34865adcf
- name: inputfile-3753defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ff09f036ea2e9b10aafda245d8627353
- name: inputfile-3753unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3058c55618814a5623ecfa7ed3613183
- name: inputfile-3751defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/fd22680c55f1dbdb8e87ac43e7a66174
- name: inputfile-3751defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/27fc34ffc74a9acbd6969dd2594a5478
- name: inputfile-3751unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/af4b529d6940a9b872eaa40dc198621e
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/fd94187ad5941df3d2471e1f4107a9b2
continueOn:
failed: true
- - name: RIVSPRINKLER-octtreemaker-RIVSPRINKLER-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIVSPRINKLER-octtreemaker-RIVSPRINKLER-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/fd94187ad5941df3d2471e1f4107a9b2/logs/main.log
- name: obj2protobuf-RIVSPRINKLER
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIVSPRINKLER-obj2protobuf-RIVSPRINKLER-step
steps:
- - name: obj2protobuf-RIVSPRINKLER-execute
template: obj2protobuf-RIVSPRINKLER
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/fd94187ad5941df3d2471e1f4107a9b2
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/512e05943c54656fd8decafb63e5490d
continueOn:
failed: true
- - name: RIVSPRINKLER-obj2protobuf-RIVSPRINKLER-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIVSPRINKLER-obj2protobuf-RIVSPRINKLER-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/512e05943c54656fd8decafb63e5490d/logs/main.log
- name: spaceoutlines-RIVSPRINKLER
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3752ifc2graph --storeys /tmp/3752ifc2graphstorey
--graphdb /tmp/3753ifc2graph --storeys /tmp/3753ifc2graphstorey --graphdb
/tmp/3751ifc2graph --storeys /tmp/3751ifc2graphstorey --in /tmp/3752ifcopenshellspaces
--in /tmp/3753ifcopenshellspaces --in /tmp/3751ifcopenshellspaces --out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3752ifc2graph
- name: inputfile-3752ifc2graphstorey
- name: inputfile-3753ifc2graph
- name: inputfile-3753ifc2graphstorey
- name: inputfile-3751ifc2graph
- name: inputfile-3751ifc2graphstorey
- name: inputfile-3752ifcopenshellspaces
- name: inputfile-3753ifcopenshellspaces
- name: inputfile-3751ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3752ifc2graph
path: /tmp/3752ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3752ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3752ifc2graphstorey
path: /tmp/3752ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3752ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3753ifc2graph
path: /tmp/3753ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3753ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3753ifc2graphstorey
path: /tmp/3753ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3753ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3751ifc2graph
path: /tmp/3751ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3751ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3751ifc2graphstorey
path: /tmp/3751ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3751ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3752ifcopenshellspaces
path: /tmp/3752ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3752ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3753ifcopenshellspaces
path: /tmp/3753ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3753ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3751ifcopenshellspaces
path: /tmp/3751ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3751ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIVSPRINKLER-spaceoutlines-RIVSPRINKLER-step
steps:
- - name: spaceoutlines-RIVSPRINKLER-execute
template: spaceoutlines-RIVSPRINKLER
arguments:
parameters:
- name: inputfile-3752ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8137e2198faace372b9cc3c45a2844d1
- name: inputfile-3752ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8137e2198faace372b9cc3c45a2844d1.json
- name: inputfile-3753ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4ccfef57b9c05d449aa5b08d0e40f565
- name: inputfile-3753ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/4ccfef57b9c05d449aa5b08d0e40f565.json
- name: inputfile-3751ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/22d9bd0aa03234687783aa70ec20a197
- name: inputfile-3751ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/22d9bd0aa03234687783aa70ec20a197.json
- name: inputfile-3752ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/acf1002de6a03c667162a7002b3ea9a0
- name: inputfile-3753ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/039d82c7eb859c98ca60dac9c95af113
- name: inputfile-3751ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/12334a7cd9199c2567645caa93413489
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/c3b69d0071171cc54de9da9174786b9c
continueOn:
failed: true
- - name: RIVSPRINKLER-spaceoutlines-RIVSPRINKLER-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIVSPRINKLER-spaceoutlines-RIVSPRINKLER-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/c3b69d0071171cc54de9da9174786b9c/logs/main.log
- name: 3713-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3713-rev-4.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/a4274a1ca23dff6c5d44b960a3a94ed3
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/a4274a1ca23dff6c5d44b960a3a94ed3.json
continueOn:
failed: true
- - name: 3713-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/a4274a1ca23dff6c5d44b960a3a94ed3/logs/main.log
- name: 3713-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3713-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cace623ba66b203b73ac29145a75e05c
continueOn:
failed: true
- - name: 3713-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cace623ba66b203b73ac29145a75e05c/logs/main.log
- name: 3713-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3713-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a155a42cba4f1cec6b8dae263e3d5988
continueOn:
failed: true
- - name: 3713-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a155a42cba4f1cec6b8dae263e3d5988/logs/main.log
- name: 3713-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3713-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9ab4fd811f73c124b8e2b091427ee68d
continueOn:
failed: true
- - name: 3713-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9ab4fd811f73c124b8e2b091427ee68d/logs/main.log
- name: 3713-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3713-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5844e3b63eda0dab6be69db2b0b2a33a
continueOn:
failed: true
- - name: 3713-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5844e3b63eda0dab6be69db2b0b2a33a/logs/main.log
- name: 3713-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3713-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f569e02cd215f44172d4a367135e81f5
continueOn:
failed: true
- - name: 3713-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f569e02cd215f44172d4a367135e81f5/logs/main.log
- name: 3713-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3713-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/25e14b367d472dd90d2a194ac53ef2fe
continueOn:
failed: true
- - name: 3713-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/25e14b367d472dd90d2a194ac53ef2fe/logs/main.log
- name: 3713--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cace623ba66b203b73ac29145a75e05c
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e3187218c71b8517fc91cba671c28334
continueOn:
failed: true
- - name: 3713--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e3187218c71b8517fc91cba671c28334/logs/main.log
- name: 3713-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5844e3b63eda0dab6be69db2b0b2a33a
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e8199b5d17d1ceb0b702bdf8d36df3a0
continueOn:
failed: true
- - name: 3713-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e8199b5d17d1ceb0b702bdf8d36df3a0/logs/main.log
- name: 3713-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f569e02cd215f44172d4a367135e81f5
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b6037592677676c0c1c49f745bc167e9
continueOn:
failed: true
- - name: 3713-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b6037592677676c0c1c49f745bc167e9/logs/main.log
- name: 3713-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/25e14b367d472dd90d2a194ac53ef2fe
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/98995ecda1dd6044fe9a28877fe6f0ad
continueOn:
failed: true
- - name: 3713-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/98995ecda1dd6044fe9a28877fe6f0ad/logs/main.log
- name: 3713-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e3187218c71b8517fc91cba671c28334
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a79d0ab9cb9ba2e7b863b4382bc04fa6
- name: meshcrunchoutputpath
value: /tmp/3713defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3713-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a79d0ab9cb9ba2e7b863b4382bc04fa6/logs/main.log
- name: 3713-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e3187218c71b8517fc91cba671c28334
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ce93c5a515658b89ec5bcf3c9f5a31ec
- name: meshcrunchoutputpath
value: /tmp/3713defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3713-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ce93c5a515658b89ec5bcf3c9f5a31ec/logs/main.log
- name: 3713-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e8199b5d17d1ceb0b702bdf8d36df3a0
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/de4cf3a57ba76be4ddbeeaf6e4e230ab
- name: meshcrunchoutputpath
value: /tmp/3713defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3713-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/de4cf3a57ba76be4ddbeeaf6e4e230ab/logs/main.log
- name: 3713-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e8199b5d17d1ceb0b702bdf8d36df3a0
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/cf80ee364b7c60f6f04e714889482e20
- name: meshcrunchoutputpath
value: /tmp/3713defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3713-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/cf80ee364b7c60f6f04e714889482e20/logs/main.log
- name: 3713-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b6037592677676c0c1c49f745bc167e9
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/085e3ede04a32ba4b2af999b4ab35a60
- name: meshcrunchoutputpath
value: /tmp/3713slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3713-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/085e3ede04a32ba4b2af999b4ab35a60/logs/main.log
- name: 3713-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/98995ecda1dd6044fe9a28877fe6f0ad
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a5bea2b2dab0ca71eab7d6bb965fc8fa
- name: meshcrunchoutputpath
value: /tmp/3713unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3713-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3713-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a5bea2b2dab0ca71eab7d6bb965fc8fa/logs/main.log
- name: 3714-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3714-rev-4.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/6a16c354c544eb82bce3769caec0103d
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/6a16c354c544eb82bce3769caec0103d.json
continueOn:
failed: true
- - name: 3714-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/6a16c354c544eb82bce3769caec0103d/logs/main.log
- name: 3714-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3714-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a6bef855ebea3f76757738c357b5da4d
continueOn:
failed: true
- - name: 3714-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a6bef855ebea3f76757738c357b5da4d/logs/main.log
- name: 3714-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3714-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/905d96da00e1c74b00e90a9699063c05
continueOn:
failed: true
- - name: 3714-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/905d96da00e1c74b00e90a9699063c05/logs/main.log
- name: 3714-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3714-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a6a34ee23545a4e05fe5d9e86c6aaef7
continueOn:
failed: true
- - name: 3714-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a6a34ee23545a4e05fe5d9e86c6aaef7/logs/main.log
- name: 3714-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3714-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/065f7110aa2a21f4431f794881b13c9f
continueOn:
failed: true
- - name: 3714-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/065f7110aa2a21f4431f794881b13c9f/logs/main.log
- name: 3714-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3714-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b3a6377fd1100843dac9f8d33db0f89b
continueOn:
failed: true
- - name: 3714-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b3a6377fd1100843dac9f8d33db0f89b/logs/main.log
- name: 3714-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3714-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bee8948806498cd0ee8949bda8d6dd9e
continueOn:
failed: true
- - name: 3714-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bee8948806498cd0ee8949bda8d6dd9e/logs/main.log
- name: 3714--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a6bef855ebea3f76757738c357b5da4d
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/8da86c6cb6b92cf5463ec21c2fc20acd
continueOn:
failed: true
- - name: 3714--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/8da86c6cb6b92cf5463ec21c2fc20acd/logs/main.log
- name: 3714-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/065f7110aa2a21f4431f794881b13c9f
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/3238b282b098882c822154c44b810dcb
continueOn:
failed: true
- - name: 3714-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/3238b282b098882c822154c44b810dcb/logs/main.log
- name: 3714-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b3a6377fd1100843dac9f8d33db0f89b
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7e2ea866608f4b1436d803308120f73e
continueOn:
failed: true
- - name: 3714-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7e2ea866608f4b1436d803308120f73e/logs/main.log
- name: 3714-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bee8948806498cd0ee8949bda8d6dd9e
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d247ffd416edc9f9ac4a3e3c76dfece7
continueOn:
failed: true
- - name: 3714-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d247ffd416edc9f9ac4a3e3c76dfece7/logs/main.log
- name: 3714-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/8da86c6cb6b92cf5463ec21c2fc20acd
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/8d0d2b5eac63ad41804e6d30fc80233d
- name: meshcrunchoutputpath
value: /tmp/3714defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3714-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/8d0d2b5eac63ad41804e6d30fc80233d/logs/main.log
- name: 3714-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/8da86c6cb6b92cf5463ec21c2fc20acd
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7afe4c5978584f37b67c377a9f2b2c9a
- name: meshcrunchoutputpath
value: /tmp/3714defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3714-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7afe4c5978584f37b67c377a9f2b2c9a/logs/main.log
- name: 3714-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/3238b282b098882c822154c44b810dcb
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/78b7e0e29e55d600e7fb289e995f53bc
- name: meshcrunchoutputpath
value: /tmp/3714defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3714-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/78b7e0e29e55d600e7fb289e995f53bc/logs/main.log
- name: 3714-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/3238b282b098882c822154c44b810dcb
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/28209786578a50623bf1d467c092cf3b
- name: meshcrunchoutputpath
value: /tmp/3714defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3714-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/28209786578a50623bf1d467c092cf3b/logs/main.log
- name: 3714-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7e2ea866608f4b1436d803308120f73e
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e7c195837f93a200a435a95c802521bb
- name: meshcrunchoutputpath
value: /tmp/3714slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3714-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e7c195837f93a200a435a95c802521bb/logs/main.log
- name: 3714-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d247ffd416edc9f9ac4a3e3c76dfece7
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/067a7c8a406b6e462f61c407757048bf
- name: meshcrunchoutputpath
value: /tmp/3714unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3714-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3714-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/067a7c8a406b6e462f61c407757048bf/logs/main.log
- name: 3715-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3715-rev-4.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/eeb07207f0d0d0c41cb54a564e20f79b
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/eeb07207f0d0d0c41cb54a564e20f79b.json
continueOn:
failed: true
- - name: 3715-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/eeb07207f0d0d0c41cb54a564e20f79b/logs/main.log
- name: 3715-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3715-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b363c4e9d1ab778bf53fa218868cf4bd
continueOn:
failed: true
- - name: 3715-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b363c4e9d1ab778bf53fa218868cf4bd/logs/main.log
- name: 3715-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3715-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ab3459d49d3806c1d73101397b1464f6
continueOn:
failed: true
- - name: 3715-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ab3459d49d3806c1d73101397b1464f6/logs/main.log
- name: 3715-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3715-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/76eb3394119bb5dd7e789a9c1149708c
continueOn:
failed: true
- - name: 3715-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/76eb3394119bb5dd7e789a9c1149708c/logs/main.log
- name: 3715-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3715-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5ddf76ad2f2f0b6261c2362d2fad0fb3
continueOn:
failed: true
- - name: 3715-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5ddf76ad2f2f0b6261c2362d2fad0fb3/logs/main.log
- name: 3715-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3715-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/df66098bf7f624cdf2fb79dc8373101d
continueOn:
failed: true
- - name: 3715-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/df66098bf7f624cdf2fb79dc8373101d/logs/main.log
- name: 3715-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3715-rev-4.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c9e0c7f987f8850e6888cc1940aaba5a
continueOn:
failed: true
- - name: 3715-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c9e0c7f987f8850e6888cc1940aaba5a/logs/main.log
- name: 3715--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b363c4e9d1ab778bf53fa218868cf4bd
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c057e656ba1830e23907db08d99c9243
continueOn:
failed: true
- - name: 3715--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c057e656ba1830e23907db08d99c9243/logs/main.log
- name: 3715-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5ddf76ad2f2f0b6261c2362d2fad0fb3
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/0511e0d18a3bc5e860baf562e654fdca
continueOn:
failed: true
- - name: 3715-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/0511e0d18a3bc5e860baf562e654fdca/logs/main.log
- name: 3715-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/df66098bf7f624cdf2fb79dc8373101d
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9d44cffe3256e42a5947b9d353b27fb8
continueOn:
failed: true
- - name: 3715-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9d44cffe3256e42a5947b9d353b27fb8/logs/main.log
- name: 3715-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c9e0c7f987f8850e6888cc1940aaba5a
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/826b96b5f43b0206ac11cde5820be3e0
continueOn:
failed: true
- - name: 3715-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/826b96b5f43b0206ac11cde5820be3e0/logs/main.log
- name: 3715-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c057e656ba1830e23907db08d99c9243
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2d8ca55cc6d0e6b8a7db88cf4a23a3c8
- name: meshcrunchoutputpath
value: /tmp/3715defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3715-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2d8ca55cc6d0e6b8a7db88cf4a23a3c8/logs/main.log
- name: 3715-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c057e656ba1830e23907db08d99c9243
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/946d1abf8be0f82875726b02363117e8
- name: meshcrunchoutputpath
value: /tmp/3715defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3715-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/946d1abf8be0f82875726b02363117e8/logs/main.log
- name: 3715-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/0511e0d18a3bc5e860baf562e654fdca
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/87daad8c7eb0f5d9446fa65f0be1ff3e
- name: meshcrunchoutputpath
value: /tmp/3715defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3715-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/87daad8c7eb0f5d9446fa65f0be1ff3e/logs/main.log
- name: 3715-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/0511e0d18a3bc5e860baf562e654fdca
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7f95003c7d6ca0a272192bcaab58a831
- name: meshcrunchoutputpath
value: /tmp/3715defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3715-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7f95003c7d6ca0a272192bcaab58a831/logs/main.log
- name: 3715-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9d44cffe3256e42a5947b9d353b27fb8
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ba8229f27dd783040d136910b7c70707
- name: meshcrunchoutputpath
value: /tmp/3715slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3715-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ba8229f27dd783040d136910b7c70707/logs/main.log
- name: 3715-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/826b96b5f43b0206ac11cde5820be3e0
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/f273e2787e1b798d516e70eeaa7182d4
- name: meshcrunchoutputpath
value: /tmp/3715unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3715-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3715-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/f273e2787e1b798d516e70eeaa7182d4/logs/main.log
- name: 3711-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3711-rev-5.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/1a56c4c1a3e013f99bbffaf03939efb0
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/1a56c4c1a3e013f99bbffaf03939efb0.json
continueOn:
failed: true
- - name: 3711-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/1a56c4c1a3e013f99bbffaf03939efb0/logs/main.log
- name: 3711-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3711-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c15230513308f74620ac99ebd084f905
continueOn:
failed: true
- - name: 3711-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c15230513308f74620ac99ebd084f905/logs/main.log
- name: 3711-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3711-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/2993c2eae38d4b185af4fc2f286d6b59
continueOn:
failed: true
- - name: 3711-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/2993c2eae38d4b185af4fc2f286d6b59/logs/main.log
- name: 3711-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3711-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e37568a39e6d0ea8cebd33ff53e9f113
continueOn:
failed: true
- - name: 3711-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e37568a39e6d0ea8cebd33ff53e9f113/logs/main.log
- name: 3711-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3711-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ba1ec4be51378cd23645d772f2e67c58
continueOn:
failed: true
- - name: 3711-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ba1ec4be51378cd23645d772f2e67c58/logs/main.log
- name: 3711-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3711-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e5a423a17d8097f1fb34cdc3ba3ac4c6
continueOn:
failed: true
- - name: 3711-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e5a423a17d8097f1fb34cdc3ba3ac4c6/logs/main.log
- name: 3711-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3711-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/68bb19944bd19177bcf2fe884bc8d910
continueOn:
failed: true
- - name: 3711-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/68bb19944bd19177bcf2fe884bc8d910/logs/main.log
- name: 3711--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c15230513308f74620ac99ebd084f905
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/df1d912a21d080b67cd98e74d7fd46ad
continueOn:
failed: true
- - name: 3711--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/df1d912a21d080b67cd98e74d7fd46ad/logs/main.log
- name: 3711-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ba1ec4be51378cd23645d772f2e67c58
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d0ece4870536b0ffed9af5e388407ab2
continueOn:
failed: true
- - name: 3711-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d0ece4870536b0ffed9af5e388407ab2/logs/main.log
- name: 3711-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e5a423a17d8097f1fb34cdc3ba3ac4c6
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c31e198f58734b8029325c5431b0361c
continueOn:
failed: true
- - name: 3711-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c31e198f58734b8029325c5431b0361c/logs/main.log
- name: 3711-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/68bb19944bd19177bcf2fe884bc8d910
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/30f23274be918dd85c98fe2e29d7640a
continueOn:
failed: true
- - name: 3711-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/30f23274be918dd85c98fe2e29d7640a/logs/main.log
- name: 3711-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/df1d912a21d080b67cd98e74d7fd46ad
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5b6a9a28ad8900680d3c514e401e9f39
- name: meshcrunchoutputpath
value: /tmp/3711defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3711-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5b6a9a28ad8900680d3c514e401e9f39/logs/main.log
- name: 3711-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/df1d912a21d080b67cd98e74d7fd46ad
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/69ec78bbd682de887143b139b54dcce5
- name: meshcrunchoutputpath
value: /tmp/3711defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3711-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/69ec78bbd682de887143b139b54dcce5/logs/main.log
- name: 3711-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d0ece4870536b0ffed9af5e388407ab2
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/c666af4fbce20280af592d41aa6837e4
- name: meshcrunchoutputpath
value: /tmp/3711defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3711-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/c666af4fbce20280af592d41aa6837e4/logs/main.log
- name: 3711-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d0ece4870536b0ffed9af5e388407ab2
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b964b9a9c4c3983773ffb3e3c15d48d1
- name: meshcrunchoutputpath
value: /tmp/3711defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3711-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b964b9a9c4c3983773ffb3e3c15d48d1/logs/main.log
- name: 3711-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c31e198f58734b8029325c5431b0361c
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ad2a8811f83a5ef6945121f8148a3acb
- name: meshcrunchoutputpath
value: /tmp/3711slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3711-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ad2a8811f83a5ef6945121f8148a3acb/logs/main.log
- name: 3711-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/30f23274be918dd85c98fe2e29d7640a
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/8643c5dcf1f9dd1b0ed4f017f94c17e7
- name: meshcrunchoutputpath
value: /tmp/3711unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3711-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3711-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/8643c5dcf1f9dd1b0ed4f017f94c17e7/logs/main.log
- name: 3712-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3712-rev-5.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/30aeb433885ec003aaca388c007c9d8d
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/30aeb433885ec003aaca388c007c9d8d.json
continueOn:
failed: true
- - name: 3712-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/30aeb433885ec003aaca388c007c9d8d/logs/main.log
- name: 3712-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3712-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e931e10a87b567842dadcb6358ebde2e
continueOn:
failed: true
- - name: 3712-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e931e10a87b567842dadcb6358ebde2e/logs/main.log
- name: 3712-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3712-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f7f45bfb15e3999fe1aa9f1138c23185
continueOn:
failed: true
- - name: 3712-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f7f45bfb15e3999fe1aa9f1138c23185/logs/main.log
- name: 3712-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3712-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3587c26c37b681293738015e0ad24703
continueOn:
failed: true
- - name: 3712-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3587c26c37b681293738015e0ad24703/logs/main.log
- name: 3712-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3712-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/dbaa90d6ea92ad153ffc4c6330c7dbe6
continueOn:
failed: true
- - name: 3712-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/dbaa90d6ea92ad153ffc4c6330c7dbe6/logs/main.log
- name: 3712-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3712-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/66e422529a0bd04d583f72cc23cc14e9
continueOn:
failed: true
- - name: 3712-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/66e422529a0bd04d583f72cc23cc14e9/logs/main.log
- name: 3712-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3712-rev-5.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/2adc2efd18422128ba0b4933dbe69bee
continueOn:
failed: true
- - name: 3712-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/2adc2efd18422128ba0b4933dbe69bee/logs/main.log
- name: 3712--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e931e10a87b567842dadcb6358ebde2e
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7bac0ab3e588f92be27db00478aec725
continueOn:
failed: true
- - name: 3712--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7bac0ab3e588f92be27db00478aec725/logs/main.log
- name: 3712-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/dbaa90d6ea92ad153ffc4c6330c7dbe6
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/2b7da332f9af52324a83ceb9c0bb22af
continueOn:
failed: true
- - name: 3712-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/2b7da332f9af52324a83ceb9c0bb22af/logs/main.log
- name: 3712-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/66e422529a0bd04d583f72cc23cc14e9
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/73349a08637c08c7fafe8e1d9cc2cb45
continueOn:
failed: true
- - name: 3712-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/73349a08637c08c7fafe8e1d9cc2cb45/logs/main.log
- name: 3712-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/2adc2efd18422128ba0b4933dbe69bee
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ab7c727c677392eda01d5a20f3948a72
continueOn:
failed: true
- - name: 3712-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ab7c727c677392eda01d5a20f3948a72/logs/main.log
- name: 3712-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7bac0ab3e588f92be27db00478aec725
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/06907758d5186e900f3ddb2caca72eeb
- name: meshcrunchoutputpath
value: /tmp/3712defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3712-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/06907758d5186e900f3ddb2caca72eeb/logs/main.log
- name: 3712-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/7bac0ab3e588f92be27db00478aec725
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/55091cac35fdc39976228bb33f7ee5e1
- name: meshcrunchoutputpath
value: /tmp/3712defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3712-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/55091cac35fdc39976228bb33f7ee5e1/logs/main.log
- name: 3712-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/2b7da332f9af52324a83ceb9c0bb22af
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ab8cffdc44b1f334a75985efeaf7683e
- name: meshcrunchoutputpath
value: /tmp/3712defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3712-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ab8cffdc44b1f334a75985efeaf7683e/logs/main.log
- name: 3712-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/2b7da332f9af52324a83ceb9c0bb22af
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/2d72a085a771a40559ada475974ca342
- name: meshcrunchoutputpath
value: /tmp/3712defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3712-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/2d72a085a771a40559ada475974ca342/logs/main.log
- name: 3712-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/73349a08637c08c7fafe8e1d9cc2cb45
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/13b44a0bd449c5dec8626d0bf1075759
- name: meshcrunchoutputpath
value: /tmp/3712slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3712-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/13b44a0bd449c5dec8626d0bf1075759/logs/main.log
- name: 3712-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ab7c727c677392eda01d5a20f3948a72
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/10d627aaddd253fe6d8bb364fa4ebd2f
- name: meshcrunchoutputpath
value: /tmp/3712unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3712-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3712-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/10d627aaddd253fe6d8bb364fa4ebd2f/logs/main.log
- name: octtreemaker-BUS1
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3713defaultmeshcrunchhigh --high /tmp/3713defaultmeshcrunchpipeshigh
--high /tmp/3713slicedmeshcrunchhigh --high /tmp/3714defaultmeshcrunchhigh
--high /tmp/3714defaultmeshcrunchpipeshigh --high /tmp/3714slicedmeshcrunchhigh
--high /tmp/3715defaultmeshcrunchhigh --high /tmp/3715defaultmeshcrunchpipeshigh
--high /tmp/3715slicedmeshcrunchhigh --high /tmp/3711defaultmeshcrunchhigh
--high /tmp/3711defaultmeshcrunchpipeshigh --high /tmp/3711slicedmeshcrunchhigh
--high /tmp/3712defaultmeshcrunchhigh --high /tmp/3712defaultmeshcrunchpipeshigh
--high /tmp/3712slicedmeshcrunchhigh --low /tmp/3713defaultmeshcrunchlow --low
/tmp/3713defaultmeshcrunchpipeslow --low /tmp/3713unslicedmeshcrunchlow --low
/tmp/3714defaultmeshcrunchlow --low /tmp/3714defaultmeshcrunchpipeslow --low
/tmp/3714unslicedmeshcrunchlow --low /tmp/3715defaultmeshcrunchlow --low /tmp/3715defaultmeshcrunchpipeslow
--low /tmp/3715unslicedmeshcrunchlow --low /tmp/3711defaultmeshcrunchlow --low
/tmp/3711defaultmeshcrunchpipeslow --low /tmp/3711unslicedmeshcrunchlow --low
/tmp/3712defaultmeshcrunchlow --low /tmp/3712defaultmeshcrunchpipeslow --low
/tmp/3712unslicedmeshcrunchlow --out /tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3713defaultmeshcrunchhigh
- name: inputfile-3713defaultmeshcrunchpipeshigh
- name: inputfile-3713slicedmeshcrunchhigh
- name: inputfile-3714defaultmeshcrunchhigh
- name: inputfile-3714defaultmeshcrunchpipeshigh
- name: inputfile-3714slicedmeshcrunchhigh
- name: inputfile-3715defaultmeshcrunchhigh
- name: inputfile-3715defaultmeshcrunchpipeshigh
- name: inputfile-3715slicedmeshcrunchhigh
- name: inputfile-3711defaultmeshcrunchhigh
- name: inputfile-3711defaultmeshcrunchpipeshigh
- name: inputfile-3711slicedmeshcrunchhigh
- name: inputfile-3712defaultmeshcrunchhigh
- name: inputfile-3712defaultmeshcrunchpipeshigh
- name: inputfile-3712slicedmeshcrunchhigh
- name: inputfile-3713defaultmeshcrunchlow
- name: inputfile-3713defaultmeshcrunchpipeslow
- name: inputfile-3713unslicedmeshcrunchlow
- name: inputfile-3714defaultmeshcrunchlow
- name: inputfile-3714defaultmeshcrunchpipeslow
- name: inputfile-3714unslicedmeshcrunchlow
- name: inputfile-3715defaultmeshcrunchlow
- name: inputfile-3715defaultmeshcrunchpipeslow
- name: inputfile-3715unslicedmeshcrunchlow
- name: inputfile-3711defaultmeshcrunchlow
- name: inputfile-3711defaultmeshcrunchpipeslow
- name: inputfile-3711unslicedmeshcrunchlow
- name: inputfile-3712defaultmeshcrunchlow
- name: inputfile-3712defaultmeshcrunchpipeslow
- name: inputfile-3712unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3713defaultmeshcrunchhigh
path: /tmp/3713defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3713defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3713defaultmeshcrunchpipeshigh
path: /tmp/3713defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3713defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3713slicedmeshcrunchhigh
path: /tmp/3713slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3713slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3714defaultmeshcrunchhigh
path: /tmp/3714defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3714defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3714defaultmeshcrunchpipeshigh
path: /tmp/3714defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3714defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3714slicedmeshcrunchhigh
path: /tmp/3714slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3714slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3715defaultmeshcrunchhigh
path: /tmp/3715defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3715defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3715defaultmeshcrunchpipeshigh
path: /tmp/3715defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3715defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3715slicedmeshcrunchhigh
path: /tmp/3715slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3715slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3711defaultmeshcrunchhigh
path: /tmp/3711defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3711defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3711defaultmeshcrunchpipeshigh
path: /tmp/3711defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3711defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3711slicedmeshcrunchhigh
path: /tmp/3711slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3711slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3712defaultmeshcrunchhigh
path: /tmp/3712defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3712defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3712defaultmeshcrunchpipeshigh
path: /tmp/3712defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3712defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3712slicedmeshcrunchhigh
path: /tmp/3712slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3712slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3713defaultmeshcrunchlow
path: /tmp/3713defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3713defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3713defaultmeshcrunchpipeslow
path: /tmp/3713defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3713defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3713unslicedmeshcrunchlow
path: /tmp/3713unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3713unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3714defaultmeshcrunchlow
path: /tmp/3714defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3714defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3714defaultmeshcrunchpipeslow
path: /tmp/3714defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3714defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3714unslicedmeshcrunchlow
path: /tmp/3714unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3714unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3715defaultmeshcrunchlow
path: /tmp/3715defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3715defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3715defaultmeshcrunchpipeslow
path: /tmp/3715defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3715defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3715unslicedmeshcrunchlow
path: /tmp/3715unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3715unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3711defaultmeshcrunchlow
path: /tmp/3711defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3711defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3711defaultmeshcrunchpipeslow
path: /tmp/3711defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3711defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3711unslicedmeshcrunchlow
path: /tmp/3711unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3711unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3712defaultmeshcrunchlow
path: /tmp/3712defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3712defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3712defaultmeshcrunchpipeslow
path: /tmp/3712defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3712defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3712unslicedmeshcrunchlow
path: /tmp/3712unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3712unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: BUS1-octtreemaker-BUS1-step
steps:
- - name: octtreemaker-BUS1-execute
template: octtreemaker-BUS1
arguments:
parameters:
- name: inputfile-3713defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a79d0ab9cb9ba2e7b863b4382bc04fa6
- name: inputfile-3713defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/de4cf3a57ba76be4ddbeeaf6e4e230ab
- name: inputfile-3713slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/085e3ede04a32ba4b2af999b4ab35a60
- name: inputfile-3714defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/8d0d2b5eac63ad41804e6d30fc80233d
- name: inputfile-3714defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/78b7e0e29e55d600e7fb289e995f53bc
- name: inputfile-3714slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e7c195837f93a200a435a95c802521bb
- name: inputfile-3715defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2d8ca55cc6d0e6b8a7db88cf4a23a3c8
- name: inputfile-3715defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/87daad8c7eb0f5d9446fa65f0be1ff3e
- name: inputfile-3715slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ba8229f27dd783040d136910b7c70707
- name: inputfile-3711defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5b6a9a28ad8900680d3c514e401e9f39
- name: inputfile-3711defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/c666af4fbce20280af592d41aa6837e4
- name: inputfile-3711slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ad2a8811f83a5ef6945121f8148a3acb
- name: inputfile-3712defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/06907758d5186e900f3ddb2caca72eeb
- name: inputfile-3712defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ab8cffdc44b1f334a75985efeaf7683e
- name: inputfile-3712slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/13b44a0bd449c5dec8626d0bf1075759
- name: inputfile-3713defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ce93c5a515658b89ec5bcf3c9f5a31ec
- name: inputfile-3713defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/cf80ee364b7c60f6f04e714889482e20
- name: inputfile-3713unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a5bea2b2dab0ca71eab7d6bb965fc8fa
- name: inputfile-3714defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7afe4c5978584f37b67c377a9f2b2c9a
- name: inputfile-3714defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/28209786578a50623bf1d467c092cf3b
- name: inputfile-3714unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/067a7c8a406b6e462f61c407757048bf
- name: inputfile-3715defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/946d1abf8be0f82875726b02363117e8
- name: inputfile-3715defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7f95003c7d6ca0a272192bcaab58a831
- name: inputfile-3715unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/f273e2787e1b798d516e70eeaa7182d4
- name: inputfile-3711defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/69ec78bbd682de887143b139b54dcce5
- name: inputfile-3711defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b964b9a9c4c3983773ffb3e3c15d48d1
- name: inputfile-3711unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/8643c5dcf1f9dd1b0ed4f017f94c17e7
- name: inputfile-3712defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/55091cac35fdc39976228bb33f7ee5e1
- name: inputfile-3712defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/2d72a085a771a40559ada475974ca342
- name: inputfile-3712unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/10d627aaddd253fe6d8bb364fa4ebd2f
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/28cadefb997a2d0e1ec79064472b9b58
continueOn:
failed: true
- - name: BUS1-octtreemaker-BUS1-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: BUS1-octtreemaker-BUS1-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/28cadefb997a2d0e1ec79064472b9b58/logs/main.log
- name: obj2protobuf-BUS1
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: BUS1-obj2protobuf-BUS1-step
steps:
- - name: obj2protobuf-BUS1-execute
template: obj2protobuf-BUS1
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/28cadefb997a2d0e1ec79064472b9b58
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/a03acf1749911a672b4f3f4fd2216784
continueOn:
failed: true
- - name: BUS1-obj2protobuf-BUS1-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: BUS1-obj2protobuf-BUS1-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/a03acf1749911a672b4f3f4fd2216784/logs/main.log
- name: spaceoutlines-BUS1
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3713ifc2graph --storeys /tmp/3713ifc2graphstorey
--graphdb /tmp/3714ifc2graph --storeys /tmp/3714ifc2graphstorey --graphdb
/tmp/3715ifc2graph --storeys /tmp/3715ifc2graphstorey --graphdb /tmp/3711ifc2graph
--storeys /tmp/3711ifc2graphstorey --graphdb /tmp/3712ifc2graph --storeys
/tmp/3712ifc2graphstorey --in /tmp/3713ifcopenshellspaces --in /tmp/3714ifcopenshellspaces
--in /tmp/3715ifcopenshellspaces --in /tmp/3711ifcopenshellspaces --in /tmp/3712ifcopenshellspaces
--out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3713ifc2graph
- name: inputfile-3713ifc2graphstorey
- name: inputfile-3714ifc2graph
- name: inputfile-3714ifc2graphstorey
- name: inputfile-3715ifc2graph
- name: inputfile-3715ifc2graphstorey
- name: inputfile-3711ifc2graph
- name: inputfile-3711ifc2graphstorey
- name: inputfile-3712ifc2graph
- name: inputfile-3712ifc2graphstorey
- name: inputfile-3713ifcopenshellspaces
- name: inputfile-3714ifcopenshellspaces
- name: inputfile-3715ifcopenshellspaces
- name: inputfile-3711ifcopenshellspaces
- name: inputfile-3712ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3713ifc2graph
path: /tmp/3713ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3713ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3713ifc2graphstorey
path: /tmp/3713ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3713ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3714ifc2graph
path: /tmp/3714ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3714ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3714ifc2graphstorey
path: /tmp/3714ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3714ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3715ifc2graph
path: /tmp/3715ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3715ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3715ifc2graphstorey
path: /tmp/3715ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3715ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3711ifc2graph
path: /tmp/3711ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3711ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3711ifc2graphstorey
path: /tmp/3711ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3711ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3712ifc2graph
path: /tmp/3712ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3712ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3712ifc2graphstorey
path: /tmp/3712ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3712ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3713ifcopenshellspaces
path: /tmp/3713ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3713ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3714ifcopenshellspaces
path: /tmp/3714ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3714ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3715ifcopenshellspaces
path: /tmp/3715ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3715ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3711ifcopenshellspaces
path: /tmp/3711ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3711ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3712ifcopenshellspaces
path: /tmp/3712ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3712ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: BUS1-spaceoutlines-BUS1-step
steps:
- - name: spaceoutlines-BUS1-execute
template: spaceoutlines-BUS1
arguments:
parameters:
- name: inputfile-3713ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/a4274a1ca23dff6c5d44b960a3a94ed3
- name: inputfile-3713ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/a4274a1ca23dff6c5d44b960a3a94ed3.json
- name: inputfile-3714ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/6a16c354c544eb82bce3769caec0103d
- name: inputfile-3714ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/6a16c354c544eb82bce3769caec0103d.json
- name: inputfile-3715ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/eeb07207f0d0d0c41cb54a564e20f79b
- name: inputfile-3715ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/eeb07207f0d0d0c41cb54a564e20f79b.json
- name: inputfile-3711ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/1a56c4c1a3e013f99bbffaf03939efb0
- name: inputfile-3711ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/1a56c4c1a3e013f99bbffaf03939efb0.json
- name: inputfile-3712ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/30aeb433885ec003aaca388c007c9d8d
- name: inputfile-3712ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/30aeb433885ec003aaca388c007c9d8d.json
- name: inputfile-3713ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9ab4fd811f73c124b8e2b091427ee68d
- name: inputfile-3714ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a6a34ee23545a4e05fe5d9e86c6aaef7
- name: inputfile-3715ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/76eb3394119bb5dd7e789a9c1149708c
- name: inputfile-3711ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e37568a39e6d0ea8cebd33ff53e9f113
- name: inputfile-3712ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3587c26c37b681293738015e0ad24703
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/bd250d998820a61eca9c34e84e62a942
continueOn:
failed: true
- - name: BUS1-spaceoutlines-BUS1-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: BUS1-spaceoutlines-BUS1-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/bd250d998820a61eca9c34e84e62a942/logs/main.log
- name: 3754-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3754-rev-3.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/f6dc8e3bcbd85281a4b24c83c024965d
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/f6dc8e3bcbd85281a4b24c83c024965d.json
continueOn:
failed: true
- - name: 3754-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/f6dc8e3bcbd85281a4b24c83c024965d/logs/main.log
- name: 3754-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3754-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7ec82f51ed3a7996a4d947cadae9f491
continueOn:
failed: true
- - name: 3754-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7ec82f51ed3a7996a4d947cadae9f491/logs/main.log
- name: 3754-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3754-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/db2fe027400a3fa71e3a3a45d0b25a15
continueOn:
failed: true
- - name: 3754-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/db2fe027400a3fa71e3a3a45d0b25a15/logs/main.log
- name: 3754-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3754-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/94e748a7d3cdd45641517d198524b6f2
continueOn:
failed: true
- - name: 3754-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/94e748a7d3cdd45641517d198524b6f2/logs/main.log
- name: 3754-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3754-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ebfd64d50e869d212625202be48cabd1
continueOn:
failed: true
- - name: 3754-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ebfd64d50e869d212625202be48cabd1/logs/main.log
- name: 3754-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3754-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/09de47f5da3e202f87b468c451f94ceb
continueOn:
failed: true
- - name: 3754-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/09de47f5da3e202f87b468c451f94ceb/logs/main.log
- name: 3754-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3754-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/76ba396aa00ea10dabff13fb425f3f5b
continueOn:
failed: true
- - name: 3754-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/76ba396aa00ea10dabff13fb425f3f5b/logs/main.log
- name: 3754--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7ec82f51ed3a7996a4d947cadae9f491
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ebe0a7a6171f126c403d9a9c9e064e5e
continueOn:
failed: true
- - name: 3754--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ebe0a7a6171f126c403d9a9c9e064e5e/logs/main.log
- name: 3754-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ebfd64d50e869d212625202be48cabd1
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/0b921fe1ac205e8a868c680968f6a57d
continueOn:
failed: true
- - name: 3754-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/0b921fe1ac205e8a868c680968f6a57d/logs/main.log
- name: 3754-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/09de47f5da3e202f87b468c451f94ceb
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/469e31fccf7d38db5c364d68291f85f0
continueOn:
failed: true
- - name: 3754-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/469e31fccf7d38db5c364d68291f85f0/logs/main.log
- name: 3754-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/76ba396aa00ea10dabff13fb425f3f5b
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/3abb44e516c30ca0f238f6e14aa9655c
continueOn:
failed: true
- - name: 3754-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/3abb44e516c30ca0f238f6e14aa9655c/logs/main.log
- name: 3754-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ebe0a7a6171f126c403d9a9c9e064e5e
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/6ba9b7c6e867f23cff3bf3279e0370cb
- name: meshcrunchoutputpath
value: /tmp/3754defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3754-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/6ba9b7c6e867f23cff3bf3279e0370cb/logs/main.log
- name: 3754-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ebe0a7a6171f126c403d9a9c9e064e5e
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/e314d8754ad192a2091073470dcc7e1f
- name: meshcrunchoutputpath
value: /tmp/3754defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3754-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/e314d8754ad192a2091073470dcc7e1f/logs/main.log
- name: 3754-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/0b921fe1ac205e8a868c680968f6a57d
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/68ef14316abfad82d9e85155b75f1a18
- name: meshcrunchoutputpath
value: /tmp/3754defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3754-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/68ef14316abfad82d9e85155b75f1a18/logs/main.log
- name: 3754-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/0b921fe1ac205e8a868c680968f6a57d
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a7248a38cba2b196e6bd520eb26e902a
- name: meshcrunchoutputpath
value: /tmp/3754defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3754-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a7248a38cba2b196e6bd520eb26e902a/logs/main.log
- name: 3754-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/469e31fccf7d38db5c364d68291f85f0
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/427162099f01c1872dd86ef299b476ee
- name: meshcrunchoutputpath
value: /tmp/3754slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3754-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/427162099f01c1872dd86ef299b476ee/logs/main.log
- name: 3754-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/3abb44e516c30ca0f238f6e14aa9655c
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9e0f126e2653d19c78437fc879c54bad
- name: meshcrunchoutputpath
value: /tmp/3754unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3754-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3754-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9e0f126e2653d19c78437fc879c54bad/logs/main.log
- name: octtreemaker-RIV01GASS
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3754defaultmeshcrunchhigh --high /tmp/3754defaultmeshcrunchpipeshigh
--high /tmp/3754slicedmeshcrunchhigh --low /tmp/3754defaultmeshcrunchlow --low
/tmp/3754defaultmeshcrunchpipeslow --low /tmp/3754unslicedmeshcrunchlow --out
/tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3754defaultmeshcrunchhigh
- name: inputfile-3754defaultmeshcrunchpipeshigh
- name: inputfile-3754slicedmeshcrunchhigh
- name: inputfile-3754defaultmeshcrunchlow
- name: inputfile-3754defaultmeshcrunchpipeslow
- name: inputfile-3754unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3754defaultmeshcrunchhigh
path: /tmp/3754defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3754defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3754defaultmeshcrunchpipeshigh
path: /tmp/3754defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3754defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3754slicedmeshcrunchhigh
path: /tmp/3754slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3754slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3754defaultmeshcrunchlow
path: /tmp/3754defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3754defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3754defaultmeshcrunchpipeslow
path: /tmp/3754defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3754defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3754unslicedmeshcrunchlow
path: /tmp/3754unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3754unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIV01GASS-octtreemaker-RIV01GASS-step
steps:
- - name: octtreemaker-RIV01GASS-execute
template: octtreemaker-RIV01GASS
arguments:
parameters:
- name: inputfile-3754defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/6ba9b7c6e867f23cff3bf3279e0370cb
- name: inputfile-3754defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/68ef14316abfad82d9e85155b75f1a18
- name: inputfile-3754slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/427162099f01c1872dd86ef299b476ee
- name: inputfile-3754defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/e314d8754ad192a2091073470dcc7e1f
- name: inputfile-3754defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a7248a38cba2b196e6bd520eb26e902a
- name: inputfile-3754unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9e0f126e2653d19c78437fc879c54bad
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/e487a0352b14020d164c2d490be84ebf
continueOn:
failed: true
- - name: RIV01GASS-octtreemaker-RIV01GASS-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIV01GASS-octtreemaker-RIV01GASS-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/e487a0352b14020d164c2d490be84ebf/logs/main.log
- name: obj2protobuf-RIV01GASS
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIV01GASS-obj2protobuf-RIV01GASS-step
steps:
- - name: obj2protobuf-RIV01GASS-execute
template: obj2protobuf-RIV01GASS
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/e487a0352b14020d164c2d490be84ebf
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/9bf330ea9c8b3064bf77acaa714f93fb
continueOn:
failed: true
- - name: RIV01GASS-obj2protobuf-RIV01GASS-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIV01GASS-obj2protobuf-RIV01GASS-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/9bf330ea9c8b3064bf77acaa714f93fb/logs/main.log
- name: spaceoutlines-RIV01GASS
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3754ifc2graph --storeys /tmp/3754ifc2graphstorey
--in /tmp/3754ifcopenshellspaces --out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3754ifc2graph
- name: inputfile-3754ifc2graphstorey
- name: inputfile-3754ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3754ifc2graph
path: /tmp/3754ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3754ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3754ifc2graphstorey
path: /tmp/3754ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3754ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3754ifcopenshellspaces
path: /tmp/3754ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3754ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIV01GASS-spaceoutlines-RIV01GASS-step
steps:
- - name: spaceoutlines-RIV01GASS-execute
template: spaceoutlines-RIV01GASS
arguments:
parameters:
- name: inputfile-3754ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/f6dc8e3bcbd85281a4b24c83c024965d
- name: inputfile-3754ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/f6dc8e3bcbd85281a4b24c83c024965d.json
- name: inputfile-3754ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/94e748a7d3cdd45641517d198524b6f2
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/94aa2f137a328d67de12c9dcffb6d428
continueOn:
failed: true
- - name: RIV01GASS-spaceoutlines-RIV01GASS-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIV01GASS-spaceoutlines-RIV01GASS-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/94aa2f137a328d67de12c9dcffb6d428/logs/main.log
- name: 3766-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3766-rev-2.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/24b2e040aaa167ee525680299784daf0
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/24b2e040aaa167ee525680299784daf0.json
continueOn:
failed: true
- - name: 3766-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/24b2e040aaa167ee525680299784daf0/logs/main.log
- name: 3766-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3766-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/979cf6893bbf441d4a87d242c703aa04
continueOn:
failed: true
- - name: 3766-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/979cf6893bbf441d4a87d242c703aa04/logs/main.log
- name: 3766-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3766-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/06cc1e0451ce87f2880dcd1ac4f7fb7a
continueOn:
failed: true
- - name: 3766-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/06cc1e0451ce87f2880dcd1ac4f7fb7a/logs/main.log
- name: 3766-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3766-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/13b1db2eb99b323c272d4e53116bc3f4
continueOn:
failed: true
- - name: 3766-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/13b1db2eb99b323c272d4e53116bc3f4/logs/main.log
- name: 3766-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3766-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/86bd737b25ef7d53bdfea7bfd4de7d77
continueOn:
failed: true
- - name: 3766-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/86bd737b25ef7d53bdfea7bfd4de7d77/logs/main.log
- name: 3766-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3766-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cd65f88b4276d912ca381e933c0bf4f8
continueOn:
failed: true
- - name: 3766-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cd65f88b4276d912ca381e933c0bf4f8/logs/main.log
- name: 3766-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3766-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/38e219ae2345cafc40e45111b735ebc7
continueOn:
failed: true
- - name: 3766-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/38e219ae2345cafc40e45111b735ebc7/logs/main.log
- name: 3766--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/979cf6893bbf441d4a87d242c703aa04
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/a90fcdf7d1b532d7035c77d9bed8fe7f
continueOn:
failed: true
- - name: 3766--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/a90fcdf7d1b532d7035c77d9bed8fe7f/logs/main.log
- name: 3766-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/86bd737b25ef7d53bdfea7bfd4de7d77
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/36f2005a4d403ddbc7894ef63fbf0aee
continueOn:
failed: true
- - name: 3766-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/36f2005a4d403ddbc7894ef63fbf0aee/logs/main.log
- name: 3766-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cd65f88b4276d912ca381e933c0bf4f8
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/f34165dd47067c02837db129bf29bc4b
continueOn:
failed: true
- - name: 3766-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/f34165dd47067c02837db129bf29bc4b/logs/main.log
- name: 3766-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/38e219ae2345cafc40e45111b735ebc7
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/629188b26a6b984001725c819acfee9a
continueOn:
failed: true
- - name: 3766-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/629188b26a6b984001725c819acfee9a/logs/main.log
- name: 3766-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/a90fcdf7d1b532d7035c77d9bed8fe7f
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e123ce73d00331be96dce4035d504034
- name: meshcrunchoutputpath
value: /tmp/3766defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3766-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e123ce73d00331be96dce4035d504034/logs/main.log
- name: 3766-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/a90fcdf7d1b532d7035c77d9bed8fe7f
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3fbf995011ce04938f99394af2c7eea7
- name: meshcrunchoutputpath
value: /tmp/3766defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3766-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3fbf995011ce04938f99394af2c7eea7/logs/main.log
- name: 3766-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/36f2005a4d403ddbc7894ef63fbf0aee
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fe47e7e0f22494bc62c1d2b731be21da
- name: meshcrunchoutputpath
value: /tmp/3766defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3766-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fe47e7e0f22494bc62c1d2b731be21da/logs/main.log
- name: 3766-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/36f2005a4d403ddbc7894ef63fbf0aee
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/53aa397fa1d2e22230a16eddeba7bb87
- name: meshcrunchoutputpath
value: /tmp/3766defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3766-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/53aa397fa1d2e22230a16eddeba7bb87/logs/main.log
- name: 3766-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/f34165dd47067c02837db129bf29bc4b
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/719c38dc88f92e02f8156c14ced66805
- name: meshcrunchoutputpath
value: /tmp/3766slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3766-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/719c38dc88f92e02f8156c14ced66805/logs/main.log
- name: 3766-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/629188b26a6b984001725c819acfee9a
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7655eca0dd2f1d61cfb51eeef1a38a8d
- name: meshcrunchoutputpath
value: /tmp/3766unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3766-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3766-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7655eca0dd2f1d61cfb51eeef1a38a8d/logs/main.log
- name: 3773-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3773-rev-2.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/64299ccd477b6b0181aa91c0ada0af28
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/64299ccd477b6b0181aa91c0ada0af28.json
continueOn:
failed: true
- - name: 3773-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/64299ccd477b6b0181aa91c0ada0af28/logs/main.log
- name: 3773-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3773-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c88bbd5bb4df5e92e2b55dbc7e278ea3
continueOn:
failed: true
- - name: 3773-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c88bbd5bb4df5e92e2b55dbc7e278ea3/logs/main.log
- name: 3773-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3773-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1a23bbb93c5119bb8766913b866c4fc2
continueOn:
failed: true
- - name: 3773-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1a23bbb93c5119bb8766913b866c4fc2/logs/main.log
- name: 3773-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3773-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/fdff29a04ea45b7dcd68b2a5d4c48ce1
continueOn:
failed: true
- - name: 3773-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/fdff29a04ea45b7dcd68b2a5d4c48ce1/logs/main.log
- name: 3773-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3773-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/becb19b4f43022ac65464b29dc38a6ed
continueOn:
failed: true
- - name: 3773-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/becb19b4f43022ac65464b29dc38a6ed/logs/main.log
- name: 3773-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3773-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ada5cd3d9cf26bdd16500b5e5a677d73
continueOn:
failed: true
- - name: 3773-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ada5cd3d9cf26bdd16500b5e5a677d73/logs/main.log
- name: 3773-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3773-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cd819dab8bf7aac88c444dca872fd951
continueOn:
failed: true
- - name: 3773-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cd819dab8bf7aac88c444dca872fd951/logs/main.log
- name: 3773--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c88bbd5bb4df5e92e2b55dbc7e278ea3
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c7503979016714b17fafdbcc66867095
continueOn:
failed: true
- - name: 3773--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c7503979016714b17fafdbcc66867095/logs/main.log
- name: 3773-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/becb19b4f43022ac65464b29dc38a6ed
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5b0e1a3040642871ab55ec9df0b63b9c
continueOn:
failed: true
- - name: 3773-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5b0e1a3040642871ab55ec9df0b63b9c/logs/main.log
- name: 3773-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ada5cd3d9cf26bdd16500b5e5a677d73
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/46ffec4397df370c52c7d7482747e4c9
continueOn:
failed: true
- - name: 3773-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/46ffec4397df370c52c7d7482747e4c9/logs/main.log
- name: 3773-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cd819dab8bf7aac88c444dca872fd951
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/a50f867821e954dbcf897ce4f6ca0d61
continueOn:
failed: true
- - name: 3773-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/a50f867821e954dbcf897ce4f6ca0d61/logs/main.log
- name: 3773-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c7503979016714b17fafdbcc66867095
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5f76133af6f637905ac72c64679bb4b4
- name: meshcrunchoutputpath
value: /tmp/3773defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3773-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5f76133af6f637905ac72c64679bb4b4/logs/main.log
- name: 3773-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c7503979016714b17fafdbcc66867095
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6cbe9bb244f253aa0e0d831a232f98e5
- name: meshcrunchoutputpath
value: /tmp/3773defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3773-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6cbe9bb244f253aa0e0d831a232f98e5/logs/main.log
- name: 3773-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5b0e1a3040642871ab55ec9df0b63b9c
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/41515d1b1ad154173c1bebfd82e0d7ba
- name: meshcrunchoutputpath
value: /tmp/3773defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3773-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/41515d1b1ad154173c1bebfd82e0d7ba/logs/main.log
- name: 3773-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5b0e1a3040642871ab55ec9df0b63b9c
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a537f3af2cafac9ba7f837a7db8dbd39
- name: meshcrunchoutputpath
value: /tmp/3773defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3773-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a537f3af2cafac9ba7f837a7db8dbd39/logs/main.log
- name: 3773-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/46ffec4397df370c52c7d7482747e4c9
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/7855d22e479550428e67513cd8890fbf
- name: meshcrunchoutputpath
value: /tmp/3773slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3773-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/7855d22e479550428e67513cd8890fbf/logs/main.log
- name: 3773-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/a50f867821e954dbcf897ce4f6ca0d61
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/867b745ef1b4a92b3dfb5e04d1dc7e52
- name: meshcrunchoutputpath
value: /tmp/3773unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3773-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3773-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/867b745ef1b4a92b3dfb5e04d1dc7e52/logs/main.log
- name: 3760-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3760-rev-3.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e2fd6a73220e15d4f30770a338a887fd
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e2fd6a73220e15d4f30770a338a887fd.json
continueOn:
failed: true
- - name: 3760-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e2fd6a73220e15d4f30770a338a887fd/logs/main.log
- name: 3760-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3760-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/dc02611e0674a59986eabdbc8c6b861c
continueOn:
failed: true
- - name: 3760-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/dc02611e0674a59986eabdbc8c6b861c/logs/main.log
- name: 3760-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3760-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/873d88302d65a31283ccdd49532239a2
continueOn:
failed: true
- - name: 3760-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/873d88302d65a31283ccdd49532239a2/logs/main.log
- name: 3760-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3760-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7e11a9a2225dfb4385d1eb9ee77b2fee
continueOn:
failed: true
- - name: 3760-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7e11a9a2225dfb4385d1eb9ee77b2fee/logs/main.log
- name: 3760-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3760-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/73cc399fe2a53e49d277ca16c47cdf48
continueOn:
failed: true
- - name: 3760-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/73cc399fe2a53e49d277ca16c47cdf48/logs/main.log
- name: 3760-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3760-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/d5f29fd050c952418c95e5868da3fa60
continueOn:
failed: true
- - name: 3760-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/d5f29fd050c952418c95e5868da3fa60/logs/main.log
- name: 3760-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3760-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9bdee16173370929ae04ea89d4d4f230
continueOn:
failed: true
- - name: 3760-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9bdee16173370929ae04ea89d4d4f230/logs/main.log
- name: 3760--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/dc02611e0674a59986eabdbc8c6b861c
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5f0a080e32c794ff63effe3534df10ef
continueOn:
failed: true
- - name: 3760--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5f0a080e32c794ff63effe3534df10ef/logs/main.log
- name: 3760-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/73cc399fe2a53e49d277ca16c47cdf48
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/52616f3b651affd878f9135e9c4423d1
continueOn:
failed: true
- - name: 3760-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/52616f3b651affd878f9135e9c4423d1/logs/main.log
- name: 3760-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/d5f29fd050c952418c95e5868da3fa60
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/72d3a36b1fd8d9df284725eea0a17c0b
continueOn:
failed: true
- - name: 3760-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/72d3a36b1fd8d9df284725eea0a17c0b/logs/main.log
- name: 3760-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9bdee16173370929ae04ea89d4d4f230
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b530c817a17e86d91b253febebee503f
continueOn:
failed: true
- - name: 3760-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b530c817a17e86d91b253febebee503f/logs/main.log
- name: 3760-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5f0a080e32c794ff63effe3534df10ef
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/c69ada90a60468a91dad52245b9db8b1
- name: meshcrunchoutputpath
value: /tmp/3760defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3760-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/c69ada90a60468a91dad52245b9db8b1/logs/main.log
- name: 3760-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5f0a080e32c794ff63effe3534df10ef
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/0fcd62729941189fb7e3e6511affcabb
- name: meshcrunchoutputpath
value: /tmp/3760defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3760-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/0fcd62729941189fb7e3e6511affcabb/logs/main.log
- name: 3760-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/52616f3b651affd878f9135e9c4423d1
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f0212d437c3654572325b846f3510ac1
- name: meshcrunchoutputpath
value: /tmp/3760defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3760-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f0212d437c3654572325b846f3510ac1/logs/main.log
- name: 3760-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/52616f3b651affd878f9135e9c4423d1
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6acfecd33f537a92e292b5cac7c5f805
- name: meshcrunchoutputpath
value: /tmp/3760defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3760-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6acfecd33f537a92e292b5cac7c5f805/logs/main.log
- name: 3760-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/72d3a36b1fd8d9df284725eea0a17c0b
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/3712842a5ceb370045ef647eef8b57bc
- name: meshcrunchoutputpath
value: /tmp/3760slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3760-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/3712842a5ceb370045ef647eef8b57bc/logs/main.log
- name: 3760-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b530c817a17e86d91b253febebee503f
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/362b201c9e3ffe69e96750c01a3433ca
- name: meshcrunchoutputpath
value: /tmp/3760unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3760-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3760-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/362b201c9e3ffe69e96750c01a3433ca/logs/main.log
- name: 3721-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3721-rev-6.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/20b644788d55b7f0b0a24ea272b1429b
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/20b644788d55b7f0b0a24ea272b1429b.json
continueOn:
failed: true
- - name: 3721-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/20b644788d55b7f0b0a24ea272b1429b/logs/main.log
- name: 3721-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3721-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a038c572f9810c3e00a2e84ad2b0ea27
continueOn:
failed: true
- - name: 3721-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a038c572f9810c3e00a2e84ad2b0ea27/logs/main.log
- name: 3721-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3721-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/af6578b4b15bd01343daf6adada47842
continueOn:
failed: true
- - name: 3721-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/af6578b4b15bd01343daf6adada47842/logs/main.log
- name: 3721-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3721-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/17282377b62fabe865314f1b90a56b66
continueOn:
failed: true
- - name: 3721-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/17282377b62fabe865314f1b90a56b66/logs/main.log
- name: 3721-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3721-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f3c92623003e659f9b93b615bbf9b1f6
continueOn:
failed: true
- - name: 3721-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f3c92623003e659f9b93b615bbf9b1f6/logs/main.log
- name: 3721-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3721-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6868ef65ad56fcf49c583f67056a09a7
continueOn:
failed: true
- - name: 3721-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6868ef65ad56fcf49c583f67056a09a7/logs/main.log
- name: 3721-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3721-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c724971e6a7f602549d14eeace4c1950
continueOn:
failed: true
- - name: 3721-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c724971e6a7f602549d14eeace4c1950/logs/main.log
- name: 3721--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a038c572f9810c3e00a2e84ad2b0ea27
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c38d1585660436c3f27bf21c5f108258
continueOn:
failed: true
- - name: 3721--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c38d1585660436c3f27bf21c5f108258/logs/main.log
- name: 3721-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f3c92623003e659f9b93b615bbf9b1f6
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/f159670676268b536743ef2a06dbbaf7
continueOn:
failed: true
- - name: 3721-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/f159670676268b536743ef2a06dbbaf7/logs/main.log
- name: 3721-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6868ef65ad56fcf49c583f67056a09a7
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d4cf0a5f753265ef9ca98e1b7a1262fc
continueOn:
failed: true
- - name: 3721-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d4cf0a5f753265ef9ca98e1b7a1262fc/logs/main.log
- name: 3721-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c724971e6a7f602549d14eeace4c1950
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/eeb07094e8514395c78ccbebed5de1cf
continueOn:
failed: true
- - name: 3721-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/eeb07094e8514395c78ccbebed5de1cf/logs/main.log
- name: 3721-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c38d1585660436c3f27bf21c5f108258
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a46933b1016732684cd53b5222a0419b
- name: meshcrunchoutputpath
value: /tmp/3721defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3721-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a46933b1016732684cd53b5222a0419b/logs/main.log
- name: 3721-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c38d1585660436c3f27bf21c5f108258
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b0aefd6fdf591a2a7c28a97c0ecd32b2
- name: meshcrunchoutputpath
value: /tmp/3721defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3721-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b0aefd6fdf591a2a7c28a97c0ecd32b2/logs/main.log
- name: 3721-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/f159670676268b536743ef2a06dbbaf7
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/83ba6796b08f76d15395ece28574248a
- name: meshcrunchoutputpath
value: /tmp/3721defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3721-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/83ba6796b08f76d15395ece28574248a/logs/main.log
- name: 3721-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/f159670676268b536743ef2a06dbbaf7
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/e46d07db70d21e54db6b209a58015b78
- name: meshcrunchoutputpath
value: /tmp/3721defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3721-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/e46d07db70d21e54db6b209a58015b78/logs/main.log
- name: 3721-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d4cf0a5f753265ef9ca98e1b7a1262fc
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/bd409888b117cdf80a9ffae5650a1c84
- name: meshcrunchoutputpath
value: /tmp/3721slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3721-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/bd409888b117cdf80a9ffae5650a1c84/logs/main.log
- name: 3721-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/eeb07094e8514395c78ccbebed5de1cf
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/cbe4bbff57a0a8179a243ba1f8b93d0b
- name: meshcrunchoutputpath
value: /tmp/3721unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3721-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3721-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/cbe4bbff57a0a8179a243ba1f8b93d0b/logs/main.log
- name: 3722-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3722-rev-6.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e16c2c3a8cb87ab697d4426944f1bb5b
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e16c2c3a8cb87ab697d4426944f1bb5b.json
continueOn:
failed: true
- - name: 3722-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e16c2c3a8cb87ab697d4426944f1bb5b/logs/main.log
- name: 3722-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3722-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6dc21c1c5473be7ef8ec6e796766ce0a
continueOn:
failed: true
- - name: 3722-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6dc21c1c5473be7ef8ec6e796766ce0a/logs/main.log
- name: 3722-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3722-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/4ae4a61ff0a77566bc1e7836eb9ae43f
continueOn:
failed: true
- - name: 3722-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/4ae4a61ff0a77566bc1e7836eb9ae43f/logs/main.log
- name: 3722-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3722-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/40226513a0929e1c1c45221c360a463f
continueOn:
failed: true
- - name: 3722-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/40226513a0929e1c1c45221c360a463f/logs/main.log
- name: 3722-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3722-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/4726c80042f9053be87f83314d0a90db
continueOn:
failed: true
- - name: 3722-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/4726c80042f9053be87f83314d0a90db/logs/main.log
- name: 3722-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3722-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/38f6e1a2e54b188dcf902a4fd2313a0f
continueOn:
failed: true
- - name: 3722-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/38f6e1a2e54b188dcf902a4fd2313a0f/logs/main.log
- name: 3722-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3722-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5e57b052375630cbae7d65eb64846cec
continueOn:
failed: true
- - name: 3722-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5e57b052375630cbae7d65eb64846cec/logs/main.log
- name: 3722--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6dc21c1c5473be7ef8ec6e796766ce0a
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/adc72184ddf9541227f88d4e9056ffd6
continueOn:
failed: true
- - name: 3722--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/adc72184ddf9541227f88d4e9056ffd6/logs/main.log
- name: 3722-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/4726c80042f9053be87f83314d0a90db
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9d7b66ff301c078c8125994625d948d1
continueOn:
failed: true
- - name: 3722-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9d7b66ff301c078c8125994625d948d1/logs/main.log
- name: 3722-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/38f6e1a2e54b188dcf902a4fd2313a0f
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/957937a62db3561feef5af66d940c613
continueOn:
failed: true
- - name: 3722-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/957937a62db3561feef5af66d940c613/logs/main.log
- name: 3722-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5e57b052375630cbae7d65eb64846cec
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/6fe62ff6debb4e71992f03392001fbde
continueOn:
failed: true
- - name: 3722-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/6fe62ff6debb4e71992f03392001fbde/logs/main.log
- name: 3722-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/adc72184ddf9541227f88d4e9056ffd6
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5a0021ebd30bdda793342a54db2cc2e8
- name: meshcrunchoutputpath
value: /tmp/3722defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3722-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5a0021ebd30bdda793342a54db2cc2e8/logs/main.log
- name: 3722-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/adc72184ddf9541227f88d4e9056ffd6
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7db1e66ca7fc9a0e863ab995c24d553b
- name: meshcrunchoutputpath
value: /tmp/3722defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3722-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7db1e66ca7fc9a0e863ab995c24d553b/logs/main.log
- name: 3722-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9d7b66ff301c078c8125994625d948d1
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e49de824e9a6c1b60edf962a520e290e
- name: meshcrunchoutputpath
value: /tmp/3722defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3722-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e49de824e9a6c1b60edf962a520e290e/logs/main.log
- name: 3722-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9d7b66ff301c078c8125994625d948d1
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/69915bfdfed31f04627210a62e6827ca
- name: meshcrunchoutputpath
value: /tmp/3722defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3722-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/69915bfdfed31f04627210a62e6827ca/logs/main.log
- name: 3722-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/957937a62db3561feef5af66d940c613
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/180734ca7c0f18f1aa91eabdeea0adad
- name: meshcrunchoutputpath
value: /tmp/3722slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3722-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/180734ca7c0f18f1aa91eabdeea0adad/logs/main.log
- name: 3722-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/6fe62ff6debb4e71992f03392001fbde
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ba9dc1587ceb965ce04a212ecb15dcba
- name: meshcrunchoutputpath
value: /tmp/3722unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3722-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3722-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ba9dc1587ceb965ce04a212ecb15dcba/logs/main.log
- name: 3724-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3724-rev-6.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/61d5ba8a4641a47114e4068d24c8de84
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/61d5ba8a4641a47114e4068d24c8de84.json
continueOn:
failed: true
- - name: 3724-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/61d5ba8a4641a47114e4068d24c8de84/logs/main.log
- name: 3724-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3724-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0f1ef11c75c498bb2efc99e650cb0ea9
continueOn:
failed: true
- - name: 3724-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0f1ef11c75c498bb2efc99e650cb0ea9/logs/main.log
- name: 3724-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3724-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/51b048198862e2a5ed3cf16b4ab790fa
continueOn:
failed: true
- - name: 3724-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/51b048198862e2a5ed3cf16b4ab790fa/logs/main.log
- name: 3724-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3724-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5444d494185e105bd2b0468c017ed0db
continueOn:
failed: true
- - name: 3724-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5444d494185e105bd2b0468c017ed0db/logs/main.log
- name: 3724-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3724-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c8b6d9cabed888e34789dcace41905ce
continueOn:
failed: true
- - name: 3724-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c8b6d9cabed888e34789dcace41905ce/logs/main.log
- name: 3724-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3724-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1f6770d8d7895006b0d121cb1dc60562
continueOn:
failed: true
- - name: 3724-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1f6770d8d7895006b0d121cb1dc60562/logs/main.log
- name: 3724-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3724-rev-6.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6bc3298cb4293d41eaa048da418d0664
continueOn:
failed: true
- - name: 3724-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6bc3298cb4293d41eaa048da418d0664/logs/main.log
- name: 3724--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0f1ef11c75c498bb2efc99e650cb0ea9
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/fb278ee4bba5534b454f98eb52772287
continueOn:
failed: true
- - name: 3724--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/fb278ee4bba5534b454f98eb52772287/logs/main.log
- name: 3724-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c8b6d9cabed888e34789dcace41905ce
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/dd2f90817c25ee0a7e150fdc3776308e
continueOn:
failed: true
- - name: 3724-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/dd2f90817c25ee0a7e150fdc3776308e/logs/main.log
- name: 3724-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/1f6770d8d7895006b0d121cb1dc60562
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/abcf6e6b2f90394e82fe4b234c3ded26
continueOn:
failed: true
- - name: 3724-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/abcf6e6b2f90394e82fe4b234c3ded26/logs/main.log
- name: 3724-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6bc3298cb4293d41eaa048da418d0664
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/25ff5e0efe883b71d9430361023cb764
continueOn:
failed: true
- - name: 3724-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/25ff5e0efe883b71d9430361023cb764/logs/main.log
- name: 3724-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/fb278ee4bba5534b454f98eb52772287
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b8f88fb80fe8c8ea965bcf9a4597d06e
- name: meshcrunchoutputpath
value: /tmp/3724defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3724-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b8f88fb80fe8c8ea965bcf9a4597d06e/logs/main.log
- name: 3724-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/fb278ee4bba5534b454f98eb52772287
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9a1ff2660d9eebf9c147b780a76d7dc4
- name: meshcrunchoutputpath
value: /tmp/3724defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3724-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9a1ff2660d9eebf9c147b780a76d7dc4/logs/main.log
- name: 3724-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/dd2f90817c25ee0a7e150fdc3776308e
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/9efd975fa0c1af7195f3e551892bc1ae
- name: meshcrunchoutputpath
value: /tmp/3724defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3724-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/9efd975fa0c1af7195f3e551892bc1ae/logs/main.log
- name: 3724-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/dd2f90817c25ee0a7e150fdc3776308e
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/77ecc0f23ace11d25927408469b9489e
- name: meshcrunchoutputpath
value: /tmp/3724defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3724-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/77ecc0f23ace11d25927408469b9489e/logs/main.log
- name: 3724-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/abcf6e6b2f90394e82fe4b234c3ded26
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2ae7e9b9823529343c9b17ba2e5d0342
- name: meshcrunchoutputpath
value: /tmp/3724slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3724-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2ae7e9b9823529343c9b17ba2e5d0342/logs/main.log
- name: 3724-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/25ff5e0efe883b71d9430361023cb764
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/4d7959dff3e308b2246fcf38d295bfb6
- name: meshcrunchoutputpath
value: /tmp/3724unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3724-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3724-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/4d7959dff3e308b2246fcf38d295bfb6/logs/main.log
- name: floorplanmaker-ARK
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/floorplanmaker:production-634a2af8e3474bf4cf1a65278b4729bd276a1a3a
command:
- sh
- -c
args:
- ./generate.sh -i /tmp/3766defaultmeshcrunchhigh -i /tmp/3766defaultmeshcrunchpipeshigh
-i /tmp/3766slicedmeshcrunchhigh -i /tmp/3772defaultmeshcrunchhigh -i /tmp/3772defaultmeshcrunchpipeshigh
-i /tmp/3772slicedmeshcrunchhigh -i /tmp/3773defaultmeshcrunchhigh -i /tmp/3773defaultmeshcrunchpipeshigh
-i /tmp/3773slicedmeshcrunchhigh -i /tmp/3760defaultmeshcrunchhigh -i /tmp/3760defaultmeshcrunchpipeshigh
-i /tmp/3760slicedmeshcrunchhigh -i /tmp/3721defaultmeshcrunchhigh -i /tmp/3721defaultmeshcrunchpipeshigh
-i /tmp/3721slicedmeshcrunchhigh -i /tmp/3722defaultmeshcrunchhigh -i /tmp/3722defaultmeshcrunchpipeshigh
-i /tmp/3722slicedmeshcrunchhigh -i /tmp/3724defaultmeshcrunchhigh -i /tmp/3724defaultmeshcrunchpipeshigh
-i /tmp/3724slicedmeshcrunchhigh -s /tmp/storey-50160aacdc6cf91b618ae86a6cf648e6
-s /tmp/storey-40fb75f6cd6985ef0ec8cdfb081f932b -s /tmp/storey-e21725f53060ea2cf96175b7bc0e22b8
-s /tmp/storey-467a9168de4a5d61100bdb0587a26a98 -s /tmp/storey-44d158a3a80f6d815270d6c32738666b
-s /tmp/storey-92c468cc11d5ce9db2f91bd5faab6d06 -s /tmp/storey-47b837bf7b0fbd3234b6e5e4d7d1658a
--tar-out /tmp/floorplans
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: storey-50160aacdc6cf91b618ae86a6cf648e6
- name: storey-40fb75f6cd6985ef0ec8cdfb081f932b
- name: storey-e21725f53060ea2cf96175b7bc0e22b8
- name: storey-467a9168de4a5d61100bdb0587a26a98
- name: storey-44d158a3a80f6d815270d6c32738666b
- name: storey-92c468cc11d5ce9db2f91bd5faab6d06
- name: storey-47b837bf7b0fbd3234b6e5e4d7d1658a
- name: inputfile-3766defaultmeshcrunchhigh
- name: inputfile-3766defaultmeshcrunchpipeshigh
- name: inputfile-3766slicedmeshcrunchhigh
- name: inputfile-3772defaultmeshcrunchhigh
- name: inputfile-3772defaultmeshcrunchpipeshigh
- name: inputfile-3772slicedmeshcrunchhigh
- name: inputfile-3773defaultmeshcrunchhigh
- name: inputfile-3773defaultmeshcrunchpipeshigh
- name: inputfile-3773slicedmeshcrunchhigh
- name: inputfile-3760defaultmeshcrunchhigh
- name: inputfile-3760defaultmeshcrunchpipeshigh
- name: inputfile-3760slicedmeshcrunchhigh
- name: inputfile-3721defaultmeshcrunchhigh
- name: inputfile-3721defaultmeshcrunchpipeshigh
- name: inputfile-3721slicedmeshcrunchhigh
- name: inputfile-3722defaultmeshcrunchhigh
- name: inputfile-3722defaultmeshcrunchpipeshigh
- name: inputfile-3722slicedmeshcrunchhigh
- name: inputfile-3724defaultmeshcrunchhigh
- name: inputfile-3724defaultmeshcrunchpipeshigh
- name: inputfile-3724slicedmeshcrunchhigh
- name: outputfile
artifacts:
- name: artifact-storey-50160aacdc6cf91b618ae86a6cf648e6
path: /tmp/storey-50160aacdc6cf91b618ae86a6cf648e6
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.storey-50160aacdc6cf91b618ae86a6cf648e6}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-storey-40fb75f6cd6985ef0ec8cdfb081f932b
path: /tmp/storey-40fb75f6cd6985ef0ec8cdfb081f932b
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.storey-40fb75f6cd6985ef0ec8cdfb081f932b}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-storey-e21725f53060ea2cf96175b7bc0e22b8
path: /tmp/storey-e21725f53060ea2cf96175b7bc0e22b8
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.storey-e21725f53060ea2cf96175b7bc0e22b8}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-storey-467a9168de4a5d61100bdb0587a26a98
path: /tmp/storey-467a9168de4a5d61100bdb0587a26a98
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.storey-467a9168de4a5d61100bdb0587a26a98}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-storey-44d158a3a80f6d815270d6c32738666b
path: /tmp/storey-44d158a3a80f6d815270d6c32738666b
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.storey-44d158a3a80f6d815270d6c32738666b}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-storey-92c468cc11d5ce9db2f91bd5faab6d06
path: /tmp/storey-92c468cc11d5ce9db2f91bd5faab6d06
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.storey-92c468cc11d5ce9db2f91bd5faab6d06}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-storey-47b837bf7b0fbd3234b6e5e4d7d1658a
path: /tmp/storey-47b837bf7b0fbd3234b6e5e4d7d1658a
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.storey-47b837bf7b0fbd3234b6e5e4d7d1658a}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3766defaultmeshcrunchhigh
path: /tmp/3766defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3766defaultmeshcrunchpipeshigh
path: /tmp/3766defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3766slicedmeshcrunchhigh
path: /tmp/3766slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772defaultmeshcrunchhigh
path: /tmp/3772defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772defaultmeshcrunchpipeshigh
path: /tmp/3772defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772slicedmeshcrunchhigh
path: /tmp/3772slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773defaultmeshcrunchhigh
path: /tmp/3773defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773defaultmeshcrunchpipeshigh
path: /tmp/3773defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773slicedmeshcrunchhigh
path: /tmp/3773slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760defaultmeshcrunchhigh
path: /tmp/3760defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760defaultmeshcrunchpipeshigh
path: /tmp/3760defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760slicedmeshcrunchhigh
path: /tmp/3760slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721defaultmeshcrunchhigh
path: /tmp/3721defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721defaultmeshcrunchpipeshigh
path: /tmp/3721defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721slicedmeshcrunchhigh
path: /tmp/3721slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722defaultmeshcrunchhigh
path: /tmp/3722defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722defaultmeshcrunchpipeshigh
path: /tmp/3722defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722slicedmeshcrunchhigh
path: /tmp/3722slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724defaultmeshcrunchhigh
path: /tmp/3724defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724defaultmeshcrunchpipeshigh
path: /tmp/3724defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724slicedmeshcrunchhigh
path: /tmp/3724slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/floorplans
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: ARK-floorplanmaker-ARK-step
steps:
- - name: floorplanmaker-ARK-execute
template: floorplanmaker-ARK
arguments:
parameters:
- name: storey-50160aacdc6cf91b618ae86a6cf648e6
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/24b2e040aaa167ee525680299784daf0.json
- name: storey-40fb75f6cd6985ef0ec8cdfb081f932b
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/35766e942daff5e61d25a63e225eaf93.json
- name: storey-e21725f53060ea2cf96175b7bc0e22b8
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/64299ccd477b6b0181aa91c0ada0af28.json
- name: storey-467a9168de4a5d61100bdb0587a26a98
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e2fd6a73220e15d4f30770a338a887fd.json
- name: storey-44d158a3a80f6d815270d6c32738666b
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/20b644788d55b7f0b0a24ea272b1429b.json
- name: storey-92c468cc11d5ce9db2f91bd5faab6d06
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e16c2c3a8cb87ab697d4426944f1bb5b.json
- name: storey-47b837bf7b0fbd3234b6e5e4d7d1658a
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/61d5ba8a4641a47114e4068d24c8de84.json
- name: inputfile-3766defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e123ce73d00331be96dce4035d504034
- name: inputfile-3766defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fe47e7e0f22494bc62c1d2b731be21da
- name: inputfile-3766slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/719c38dc88f92e02f8156c14ced66805
- name: inputfile-3772defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2ece0076ac05a2a0fee19f40372c787b
- name: inputfile-3772defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ebe77ba4f1d09e34c2bc597797502932
- name: inputfile-3772slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/9c70eeefd1af14d33454b05f5cf8d7a6
- name: inputfile-3773defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5f76133af6f637905ac72c64679bb4b4
- name: inputfile-3773defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/41515d1b1ad154173c1bebfd82e0d7ba
- name: inputfile-3773slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/7855d22e479550428e67513cd8890fbf
- name: inputfile-3760defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/c69ada90a60468a91dad52245b9db8b1
- name: inputfile-3760defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f0212d437c3654572325b846f3510ac1
- name: inputfile-3760slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/3712842a5ceb370045ef647eef8b57bc
- name: inputfile-3721defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a46933b1016732684cd53b5222a0419b
- name: inputfile-3721defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/83ba6796b08f76d15395ece28574248a
- name: inputfile-3721slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/bd409888b117cdf80a9ffae5650a1c84
- name: inputfile-3722defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5a0021ebd30bdda793342a54db2cc2e8
- name: inputfile-3722defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e49de824e9a6c1b60edf962a520e290e
- name: inputfile-3722slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/180734ca7c0f18f1aa91eabdeea0adad
- name: inputfile-3724defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b8f88fb80fe8c8ea965bcf9a4597d06e
- name: inputfile-3724defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/9efd975fa0c1af7195f3e551892bc1ae
- name: inputfile-3724slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2ae7e9b9823529343c9b17ba2e5d0342
- name: outputfile
value: production/caches/floorplanmaker/production-634a2af8e3474bf4cf1a65278b4729bd276a1a3a/4eb3bc3280a098a44d8ce6464c3fe0f3
continueOn:
failed: true
- - name: ARK-floorplanmaker-ARK-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: ARK-floorplanmaker-ARK-step
- name: program-name
value: floorplanmaker
- name: log-path
value: production/caches/floorplanmaker/production-634a2af8e3474bf4cf1a65278b4729bd276a1a3a/4eb3bc3280a098a44d8ce6464c3fe0f3/logs/main.log
- name: octtreemaker-ARK
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3766defaultmeshcrunchhigh --high /tmp/3766defaultmeshcrunchpipeshigh
--high /tmp/3766slicedmeshcrunchhigh --high /tmp/3772defaultmeshcrunchhigh
--high /tmp/3772defaultmeshcrunchpipeshigh --high /tmp/3772slicedmeshcrunchhigh
--high /tmp/3773defaultmeshcrunchhigh --high /tmp/3773defaultmeshcrunchpipeshigh
--high /tmp/3773slicedmeshcrunchhigh --high /tmp/3760defaultmeshcrunchhigh
--high /tmp/3760defaultmeshcrunchpipeshigh --high /tmp/3760slicedmeshcrunchhigh
--high /tmp/3721defaultmeshcrunchhigh --high /tmp/3721defaultmeshcrunchpipeshigh
--high /tmp/3721slicedmeshcrunchhigh --high /tmp/3722defaultmeshcrunchhigh
--high /tmp/3722defaultmeshcrunchpipeshigh --high /tmp/3722slicedmeshcrunchhigh
--high /tmp/3724defaultmeshcrunchhigh --high /tmp/3724defaultmeshcrunchpipeshigh
--high /tmp/3724slicedmeshcrunchhigh --low /tmp/3766defaultmeshcrunchlow --low
/tmp/3766defaultmeshcrunchpipeslow --low /tmp/3766unslicedmeshcrunchlow --low
/tmp/3772defaultmeshcrunchlow --low /tmp/3772defaultmeshcrunchpipeslow --low
/tmp/3772unslicedmeshcrunchlow --low /tmp/3773defaultmeshcrunchlow --low /tmp/3773defaultmeshcrunchpipeslow
--low /tmp/3773unslicedmeshcrunchlow --low /tmp/3760defaultmeshcrunchlow --low
/tmp/3760defaultmeshcrunchpipeslow --low /tmp/3760unslicedmeshcrunchlow --low
/tmp/3721defaultmeshcrunchlow --low /tmp/3721defaultmeshcrunchpipeslow --low
/tmp/3721unslicedmeshcrunchlow --low /tmp/3722defaultmeshcrunchlow --low /tmp/3722defaultmeshcrunchpipeslow
--low /tmp/3722unslicedmeshcrunchlow --low /tmp/3724defaultmeshcrunchlow --low
/tmp/3724defaultmeshcrunchpipeslow --low /tmp/3724unslicedmeshcrunchlow --out
/tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3766defaultmeshcrunchhigh
- name: inputfile-3766defaultmeshcrunchpipeshigh
- name: inputfile-3766slicedmeshcrunchhigh
- name: inputfile-3772defaultmeshcrunchhigh
- name: inputfile-3772defaultmeshcrunchpipeshigh
- name: inputfile-3772slicedmeshcrunchhigh
- name: inputfile-3773defaultmeshcrunchhigh
- name: inputfile-3773defaultmeshcrunchpipeshigh
- name: inputfile-3773slicedmeshcrunchhigh
- name: inputfile-3760defaultmeshcrunchhigh
- name: inputfile-3760defaultmeshcrunchpipeshigh
- name: inputfile-3760slicedmeshcrunchhigh
- name: inputfile-3721defaultmeshcrunchhigh
- name: inputfile-3721defaultmeshcrunchpipeshigh
- name: inputfile-3721slicedmeshcrunchhigh
- name: inputfile-3722defaultmeshcrunchhigh
- name: inputfile-3722defaultmeshcrunchpipeshigh
- name: inputfile-3722slicedmeshcrunchhigh
- name: inputfile-3724defaultmeshcrunchhigh
- name: inputfile-3724defaultmeshcrunchpipeshigh
- name: inputfile-3724slicedmeshcrunchhigh
- name: inputfile-3766defaultmeshcrunchlow
- name: inputfile-3766defaultmeshcrunchpipeslow
- name: inputfile-3766unslicedmeshcrunchlow
- name: inputfile-3772defaultmeshcrunchlow
- name: inputfile-3772defaultmeshcrunchpipeslow
- name: inputfile-3772unslicedmeshcrunchlow
- name: inputfile-3773defaultmeshcrunchlow
- name: inputfile-3773defaultmeshcrunchpipeslow
- name: inputfile-3773unslicedmeshcrunchlow
- name: inputfile-3760defaultmeshcrunchlow
- name: inputfile-3760defaultmeshcrunchpipeslow
- name: inputfile-3760unslicedmeshcrunchlow
- name: inputfile-3721defaultmeshcrunchlow
- name: inputfile-3721defaultmeshcrunchpipeslow
- name: inputfile-3721unslicedmeshcrunchlow
- name: inputfile-3722defaultmeshcrunchlow
- name: inputfile-3722defaultmeshcrunchpipeslow
- name: inputfile-3722unslicedmeshcrunchlow
- name: inputfile-3724defaultmeshcrunchlow
- name: inputfile-3724defaultmeshcrunchpipeslow
- name: inputfile-3724unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3766defaultmeshcrunchhigh
path: /tmp/3766defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3766defaultmeshcrunchpipeshigh
path: /tmp/3766defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3766slicedmeshcrunchhigh
path: /tmp/3766slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772defaultmeshcrunchhigh
path: /tmp/3772defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772defaultmeshcrunchpipeshigh
path: /tmp/3772defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772slicedmeshcrunchhigh
path: /tmp/3772slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773defaultmeshcrunchhigh
path: /tmp/3773defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773defaultmeshcrunchpipeshigh
path: /tmp/3773defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773slicedmeshcrunchhigh
path: /tmp/3773slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760defaultmeshcrunchhigh
path: /tmp/3760defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760defaultmeshcrunchpipeshigh
path: /tmp/3760defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760slicedmeshcrunchhigh
path: /tmp/3760slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721defaultmeshcrunchhigh
path: /tmp/3721defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721defaultmeshcrunchpipeshigh
path: /tmp/3721defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721slicedmeshcrunchhigh
path: /tmp/3721slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722defaultmeshcrunchhigh
path: /tmp/3722defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722defaultmeshcrunchpipeshigh
path: /tmp/3722defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722slicedmeshcrunchhigh
path: /tmp/3722slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724defaultmeshcrunchhigh
path: /tmp/3724defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724defaultmeshcrunchpipeshigh
path: /tmp/3724defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724slicedmeshcrunchhigh
path: /tmp/3724slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3766defaultmeshcrunchlow
path: /tmp/3766defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3766defaultmeshcrunchpipeslow
path: /tmp/3766defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3766unslicedmeshcrunchlow
path: /tmp/3766unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772defaultmeshcrunchlow
path: /tmp/3772defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772defaultmeshcrunchpipeslow
path: /tmp/3772defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772unslicedmeshcrunchlow
path: /tmp/3772unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773defaultmeshcrunchlow
path: /tmp/3773defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773defaultmeshcrunchpipeslow
path: /tmp/3773defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773unslicedmeshcrunchlow
path: /tmp/3773unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760defaultmeshcrunchlow
path: /tmp/3760defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760defaultmeshcrunchpipeslow
path: /tmp/3760defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760unslicedmeshcrunchlow
path: /tmp/3760unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721defaultmeshcrunchlow
path: /tmp/3721defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721defaultmeshcrunchpipeslow
path: /tmp/3721defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721unslicedmeshcrunchlow
path: /tmp/3721unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722defaultmeshcrunchlow
path: /tmp/3722defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722defaultmeshcrunchpipeslow
path: /tmp/3722defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722unslicedmeshcrunchlow
path: /tmp/3722unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724defaultmeshcrunchlow
path: /tmp/3724defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724defaultmeshcrunchpipeslow
path: /tmp/3724defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724unslicedmeshcrunchlow
path: /tmp/3724unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: ARK-octtreemaker-ARK-step
steps:
- - name: octtreemaker-ARK-execute
template: octtreemaker-ARK
arguments:
parameters:
- name: inputfile-3766defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e123ce73d00331be96dce4035d504034
- name: inputfile-3766defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fe47e7e0f22494bc62c1d2b731be21da
- name: inputfile-3766slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/719c38dc88f92e02f8156c14ced66805
- name: inputfile-3772defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2ece0076ac05a2a0fee19f40372c787b
- name: inputfile-3772defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ebe77ba4f1d09e34c2bc597797502932
- name: inputfile-3772slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/9c70eeefd1af14d33454b05f5cf8d7a6
- name: inputfile-3773defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5f76133af6f637905ac72c64679bb4b4
- name: inputfile-3773defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/41515d1b1ad154173c1bebfd82e0d7ba
- name: inputfile-3773slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/7855d22e479550428e67513cd8890fbf
- name: inputfile-3760defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/c69ada90a60468a91dad52245b9db8b1
- name: inputfile-3760defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f0212d437c3654572325b846f3510ac1
- name: inputfile-3760slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/3712842a5ceb370045ef647eef8b57bc
- name: inputfile-3721defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a46933b1016732684cd53b5222a0419b
- name: inputfile-3721defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/83ba6796b08f76d15395ece28574248a
- name: inputfile-3721slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/bd409888b117cdf80a9ffae5650a1c84
- name: inputfile-3722defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5a0021ebd30bdda793342a54db2cc2e8
- name: inputfile-3722defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/e49de824e9a6c1b60edf962a520e290e
- name: inputfile-3722slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/180734ca7c0f18f1aa91eabdeea0adad
- name: inputfile-3724defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b8f88fb80fe8c8ea965bcf9a4597d06e
- name: inputfile-3724defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/9efd975fa0c1af7195f3e551892bc1ae
- name: inputfile-3724slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2ae7e9b9823529343c9b17ba2e5d0342
- name: inputfile-3766defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3fbf995011ce04938f99394af2c7eea7
- name: inputfile-3766defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/53aa397fa1d2e22230a16eddeba7bb87
- name: inputfile-3766unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7655eca0dd2f1d61cfb51eeef1a38a8d
- name: inputfile-3772defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/0372b84500b567d5447bedb1762c7dcb
- name: inputfile-3772defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a050acae9443f74158a607aa8855e1d2
- name: inputfile-3772unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3e7a319cf1a15b8c13ae4d0f6cf3a92a
- name: inputfile-3773defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6cbe9bb244f253aa0e0d831a232f98e5
- name: inputfile-3773defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/a537f3af2cafac9ba7f837a7db8dbd39
- name: inputfile-3773unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/867b745ef1b4a92b3dfb5e04d1dc7e52
- name: inputfile-3760defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/0fcd62729941189fb7e3e6511affcabb
- name: inputfile-3760defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6acfecd33f537a92e292b5cac7c5f805
- name: inputfile-3760unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/362b201c9e3ffe69e96750c01a3433ca
- name: inputfile-3721defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b0aefd6fdf591a2a7c28a97c0ecd32b2
- name: inputfile-3721defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/e46d07db70d21e54db6b209a58015b78
- name: inputfile-3721unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/cbe4bbff57a0a8179a243ba1f8b93d0b
- name: inputfile-3722defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/7db1e66ca7fc9a0e863ab995c24d553b
- name: inputfile-3722defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/69915bfdfed31f04627210a62e6827ca
- name: inputfile-3722unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ba9dc1587ceb965ce04a212ecb15dcba
- name: inputfile-3724defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9a1ff2660d9eebf9c147b780a76d7dc4
- name: inputfile-3724defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/77ecc0f23ace11d25927408469b9489e
- name: inputfile-3724unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/4d7959dff3e308b2246fcf38d295bfb6
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/b87389de18c9554e42fafc0ebba176d3
continueOn:
failed: true
- - name: ARK-octtreemaker-ARK-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: ARK-octtreemaker-ARK-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/b87389de18c9554e42fafc0ebba176d3/logs/main.log
- name: obj2protobuf-ARK
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: ARK-obj2protobuf-ARK-step
steps:
- - name: obj2protobuf-ARK-execute
template: obj2protobuf-ARK
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/b87389de18c9554e42fafc0ebba176d3
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/b608ab9ca88a3c099e79594bb61fa8f8
continueOn:
failed: true
- - name: ARK-obj2protobuf-ARK-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: ARK-obj2protobuf-ARK-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/b608ab9ca88a3c099e79594bb61fa8f8/logs/main.log
- name: spaceoutlines-ARK
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3766ifc2graph --storeys /tmp/3766ifc2graphstorey
--graphdb /tmp/3772ifc2graph --storeys /tmp/3772ifc2graphstorey --graphdb
/tmp/3773ifc2graph --storeys /tmp/3773ifc2graphstorey --graphdb /tmp/3760ifc2graph
--storeys /tmp/3760ifc2graphstorey --graphdb /tmp/3721ifc2graph --storeys
/tmp/3721ifc2graphstorey --graphdb /tmp/3722ifc2graph --storeys /tmp/3722ifc2graphstorey
--graphdb /tmp/3724ifc2graph --storeys /tmp/3724ifc2graphstorey --in /tmp/3766ifcopenshellspaces
--in /tmp/3772ifcopenshellspaces --in /tmp/3773ifcopenshellspaces --in /tmp/3760ifcopenshellspaces
--in /tmp/3721ifcopenshellspaces --in /tmp/3722ifcopenshellspaces --in /tmp/3724ifcopenshellspaces
--out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3766ifc2graph
- name: inputfile-3766ifc2graphstorey
- name: inputfile-3772ifc2graph
- name: inputfile-3772ifc2graphstorey
- name: inputfile-3773ifc2graph
- name: inputfile-3773ifc2graphstorey
- name: inputfile-3760ifc2graph
- name: inputfile-3760ifc2graphstorey
- name: inputfile-3721ifc2graph
- name: inputfile-3721ifc2graphstorey
- name: inputfile-3722ifc2graph
- name: inputfile-3722ifc2graphstorey
- name: inputfile-3724ifc2graph
- name: inputfile-3724ifc2graphstorey
- name: inputfile-3766ifcopenshellspaces
- name: inputfile-3772ifcopenshellspaces
- name: inputfile-3773ifcopenshellspaces
- name: inputfile-3760ifcopenshellspaces
- name: inputfile-3721ifcopenshellspaces
- name: inputfile-3722ifcopenshellspaces
- name: inputfile-3724ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3766ifc2graph
path: /tmp/3766ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3766ifc2graphstorey
path: /tmp/3766ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772ifc2graph
path: /tmp/3772ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772ifc2graphstorey
path: /tmp/3772ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773ifc2graph
path: /tmp/3773ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773ifc2graphstorey
path: /tmp/3773ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760ifc2graph
path: /tmp/3760ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760ifc2graphstorey
path: /tmp/3760ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721ifc2graph
path: /tmp/3721ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721ifc2graphstorey
path: /tmp/3721ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722ifc2graph
path: /tmp/3722ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722ifc2graphstorey
path: /tmp/3722ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724ifc2graph
path: /tmp/3724ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724ifc2graphstorey
path: /tmp/3724ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3766ifcopenshellspaces
path: /tmp/3766ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3766ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3772ifcopenshellspaces
path: /tmp/3772ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3772ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3773ifcopenshellspaces
path: /tmp/3773ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3773ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3760ifcopenshellspaces
path: /tmp/3760ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3760ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3721ifcopenshellspaces
path: /tmp/3721ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3721ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3722ifcopenshellspaces
path: /tmp/3722ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3722ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3724ifcopenshellspaces
path: /tmp/3724ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3724ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: ARK-spaceoutlines-ARK-step
steps:
- - name: spaceoutlines-ARK-execute
template: spaceoutlines-ARK
arguments:
parameters:
- name: inputfile-3766ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/24b2e040aaa167ee525680299784daf0
- name: inputfile-3766ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/24b2e040aaa167ee525680299784daf0.json
- name: inputfile-3772ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/35766e942daff5e61d25a63e225eaf93
- name: inputfile-3772ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/35766e942daff5e61d25a63e225eaf93.json
- name: inputfile-3773ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/64299ccd477b6b0181aa91c0ada0af28
- name: inputfile-3773ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/64299ccd477b6b0181aa91c0ada0af28.json
- name: inputfile-3760ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e2fd6a73220e15d4f30770a338a887fd
- name: inputfile-3760ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e2fd6a73220e15d4f30770a338a887fd.json
- name: inputfile-3721ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/20b644788d55b7f0b0a24ea272b1429b
- name: inputfile-3721ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/20b644788d55b7f0b0a24ea272b1429b.json
- name: inputfile-3722ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e16c2c3a8cb87ab697d4426944f1bb5b
- name: inputfile-3722ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/e16c2c3a8cb87ab697d4426944f1bb5b.json
- name: inputfile-3724ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/61d5ba8a4641a47114e4068d24c8de84
- name: inputfile-3724ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/61d5ba8a4641a47114e4068d24c8de84.json
- name: inputfile-3766ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/13b1db2eb99b323c272d4e53116bc3f4
- name: inputfile-3772ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ce420408bcb3101fd9b6b8e3122f9bdd
- name: inputfile-3773ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/fdff29a04ea45b7dcd68b2a5d4c48ce1
- name: inputfile-3760ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7e11a9a2225dfb4385d1eb9ee77b2fee
- name: inputfile-3721ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/17282377b62fabe865314f1b90a56b66
- name: inputfile-3722ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/40226513a0929e1c1c45221c360a463f
- name: inputfile-3724ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/5444d494185e105bd2b0468c017ed0db
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/59165bd24bd621cedf26fa3ea2a78dc4
continueOn:
failed: true
- - name: ARK-spaceoutlines-ARK-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: ARK-spaceoutlines-ARK-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/59165bd24bd621cedf26fa3ea2a78dc4/logs/main.log
- name: 3761-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3761-rev-2.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/412f64da2487f4d4b03891c1eecd904e
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/412f64da2487f4d4b03891c1eecd904e.json
continueOn:
failed: true
- - name: 3761-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/412f64da2487f4d4b03891c1eecd904e/logs/main.log
- name: 3761-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3761-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b0de003d1f26e928e1b1d54a4cd8aa72
continueOn:
failed: true
- - name: 3761-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b0de003d1f26e928e1b1d54a4cd8aa72/logs/main.log
- name: 3761-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3761-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ba9ffe2842049fedc8d191502fb86f58
continueOn:
failed: true
- - name: 3761-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ba9ffe2842049fedc8d191502fb86f58/logs/main.log
- name: 3761-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3761-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/06b85906a81e09e31b99d3f4f7a78fd8
continueOn:
failed: true
- - name: 3761-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/06b85906a81e09e31b99d3f4f7a78fd8/logs/main.log
- name: 3761-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3761-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/625d2e924a0f182d025078457298238d
continueOn:
failed: true
- - name: 3761-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/625d2e924a0f182d025078457298238d/logs/main.log
- name: 3761-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3761-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/67296f54fc55e2ae201ca86d7dec164a
continueOn:
failed: true
- - name: 3761-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/67296f54fc55e2ae201ca86d7dec164a/logs/main.log
- name: 3761-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3761-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a73360a4fd0efb7cd4515b94e3f9ec57
continueOn:
failed: true
- - name: 3761-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a73360a4fd0efb7cd4515b94e3f9ec57/logs/main.log
- name: 3761--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/b0de003d1f26e928e1b1d54a4cd8aa72
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5d381ed689a031a7c66bc3652b68628c
continueOn:
failed: true
- - name: 3761--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5d381ed689a031a7c66bc3652b68628c/logs/main.log
- name: 3761-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/625d2e924a0f182d025078457298238d
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9ed6fcdfeef8e2547948dc85ee14e0f0
continueOn:
failed: true
- - name: 3761-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9ed6fcdfeef8e2547948dc85ee14e0f0/logs/main.log
- name: 3761-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/67296f54fc55e2ae201ca86d7dec164a
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e1f9557864b427dfe10c81ba371d4753
continueOn:
failed: true
- - name: 3761-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e1f9557864b427dfe10c81ba371d4753/logs/main.log
- name: 3761-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a73360a4fd0efb7cd4515b94e3f9ec57
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/4c815e6e3e30fd9d9e492ed96c3863ee
continueOn:
failed: true
- - name: 3761-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/4c815e6e3e30fd9d9e492ed96c3863ee/logs/main.log
- name: 3761-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5d381ed689a031a7c66bc3652b68628c
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ed1828f20550d62e582937c44110fab9
- name: meshcrunchoutputpath
value: /tmp/3761defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3761-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ed1828f20550d62e582937c44110fab9/logs/main.log
- name: 3761-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5d381ed689a031a7c66bc3652b68628c
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/84f91638c0139ba3e656be5a33061dc2
- name: meshcrunchoutputpath
value: /tmp/3761defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3761-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/84f91638c0139ba3e656be5a33061dc2/logs/main.log
- name: 3761-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9ed6fcdfeef8e2547948dc85ee14e0f0
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/35c7a23e1898c585ba4b5d748aaeed40
- name: meshcrunchoutputpath
value: /tmp/3761defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3761-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/35c7a23e1898c585ba4b5d748aaeed40/logs/main.log
- name: 3761-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9ed6fcdfeef8e2547948dc85ee14e0f0
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/2376e6aa30be146a84744028137c136c
- name: meshcrunchoutputpath
value: /tmp/3761defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3761-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/2376e6aa30be146a84744028137c136c/logs/main.log
- name: 3761-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/e1f9557864b427dfe10c81ba371d4753
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/8544317d0cb86d0ab87e96c7e6bc3412
- name: meshcrunchoutputpath
value: /tmp/3761slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3761-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/8544317d0cb86d0ab87e96c7e6bc3412/logs/main.log
- name: 3761-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/4c815e6e3e30fd9d9e492ed96c3863ee
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/75ce0b934a9e9e4ac3f1f970681ea284
- name: meshcrunchoutputpath
value: /tmp/3761unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3761-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3761-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/75ce0b934a9e9e4ac3f1f970681ea284/logs/main.log
- name: 3762-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3762-rev-2.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8a57caae89f0114d2769462d3b15f194
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8a57caae89f0114d2769462d3b15f194.json
continueOn:
failed: true
- - name: 3762-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8a57caae89f0114d2769462d3b15f194/logs/main.log
- name: 3762-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3762-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/454c6f9df06ccd5adb5bbc8c8d5c0d18
continueOn:
failed: true
- - name: 3762-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/454c6f9df06ccd5adb5bbc8c8d5c0d18/logs/main.log
- name: 3762-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3762-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/631acfd03f7bf261e5740796093ffbe4
continueOn:
failed: true
- - name: 3762-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/631acfd03f7bf261e5740796093ffbe4/logs/main.log
- name: 3762-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3762-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/227f15fa33162ca9aab5eba0d887d25b
continueOn:
failed: true
- - name: 3762-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/227f15fa33162ca9aab5eba0d887d25b/logs/main.log
- name: 3762-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3762-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ef9395021bf458c72bfe8379c77b55e2
continueOn:
failed: true
- - name: 3762-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ef9395021bf458c72bfe8379c77b55e2/logs/main.log
- name: 3762-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3762-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9f281f957e459de3ffdeb7f18c67b00c
continueOn:
failed: true
- - name: 3762-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9f281f957e459de3ffdeb7f18c67b00c/logs/main.log
- name: 3762-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3762-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e1f635a40da9bc056053afce90d80823
continueOn:
failed: true
- - name: 3762-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e1f635a40da9bc056053afce90d80823/logs/main.log
- name: 3762--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/454c6f9df06ccd5adb5bbc8c8d5c0d18
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/33a76d87bdf67c03f8755490d70d7987
continueOn:
failed: true
- - name: 3762--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/33a76d87bdf67c03f8755490d70d7987/logs/main.log
- name: 3762-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ef9395021bf458c72bfe8379c77b55e2
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9aa025343b40bbfe6b0f3d6762382259
continueOn:
failed: true
- - name: 3762-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9aa025343b40bbfe6b0f3d6762382259/logs/main.log
- name: 3762-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9f281f957e459de3ffdeb7f18c67b00c
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/01b0af6572340c3052f3845ceb278201
continueOn:
failed: true
- - name: 3762-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/01b0af6572340c3052f3845ceb278201/logs/main.log
- name: 3762-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e1f635a40da9bc056053afce90d80823
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/16db3a58ec96c966877976a2654824e2
continueOn:
failed: true
- - name: 3762-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/16db3a58ec96c966877976a2654824e2/logs/main.log
- name: 3762-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/33a76d87bdf67c03f8755490d70d7987
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5f0739ae02b7de81799c76895a107bb3
- name: meshcrunchoutputpath
value: /tmp/3762defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3762-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5f0739ae02b7de81799c76895a107bb3/logs/main.log
- name: 3762-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/33a76d87bdf67c03f8755490d70d7987
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6043d1cec1c6b9797ffd499a5a759e91
- name: meshcrunchoutputpath
value: /tmp/3762defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3762-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6043d1cec1c6b9797ffd499a5a759e91/logs/main.log
- name: 3762-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9aa025343b40bbfe6b0f3d6762382259
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2b5de837158859ad87c358ecac98ed36
- name: meshcrunchoutputpath
value: /tmp/3762defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3762-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2b5de837158859ad87c358ecac98ed36/logs/main.log
- name: 3762-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/9aa025343b40bbfe6b0f3d6762382259
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b2d70ce8aaf94948d75fe31932ad23a3
- name: meshcrunchoutputpath
value: /tmp/3762defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3762-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b2d70ce8aaf94948d75fe31932ad23a3/logs/main.log
- name: 3762-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/01b0af6572340c3052f3845ceb278201
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f8789fc9262f61c712e45ba004e3a094
- name: meshcrunchoutputpath
value: /tmp/3762slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3762-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f8789fc9262f61c712e45ba004e3a094/logs/main.log
- name: 3762-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/16db3a58ec96c966877976a2654824e2
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/584b17afc34d28c3dca614dc94dcc903
- name: meshcrunchoutputpath
value: /tmp/3762unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3762-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3762-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/584b17afc34d28c3dca614dc94dcc903/logs/main.log
- name: 3763-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3763-rev-2.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/33b879843607206c9d660ef029e7e75e
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/33b879843607206c9d660ef029e7e75e.json
continueOn:
failed: true
- - name: 3763-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/33b879843607206c9d660ef029e7e75e/logs/main.log
- name: 3763-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3763-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/362e811aa3fb709a11cd0bae7fc6f775
continueOn:
failed: true
- - name: 3763-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/362e811aa3fb709a11cd0bae7fc6f775/logs/main.log
- name: 3763-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3763-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/40beebc67fd727275be173941ed5a0cb
continueOn:
failed: true
- - name: 3763-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/40beebc67fd727275be173941ed5a0cb/logs/main.log
- name: 3763-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3763-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6a5ab6115b29f73866e81da322a830fc
continueOn:
failed: true
- - name: 3763-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6a5ab6115b29f73866e81da322a830fc/logs/main.log
- name: 3763-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3763-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0183a7808e5b41ea37cf41974660b753
continueOn:
failed: true
- - name: 3763-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0183a7808e5b41ea37cf41974660b753/logs/main.log
- name: 3763-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3763-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8d550c6bfbd1fe0ac3cf822743ce37fc
continueOn:
failed: true
- - name: 3763-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8d550c6bfbd1fe0ac3cf822743ce37fc/logs/main.log
- name: 3763-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3763-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e68642399c4135183f926d41d3ccf802
continueOn:
failed: true
- - name: 3763-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e68642399c4135183f926d41d3ccf802/logs/main.log
- name: 3763--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/362e811aa3fb709a11cd0bae7fc6f775
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ae9e48f536cc8bdf1b69ca4515c6fdf4
continueOn:
failed: true
- - name: 3763--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ae9e48f536cc8bdf1b69ca4515c6fdf4/logs/main.log
- name: 3763-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/0183a7808e5b41ea37cf41974660b753
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/38ecaee6d1c5fab5b0cb31c584fadff1
continueOn:
failed: true
- - name: 3763-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/38ecaee6d1c5fab5b0cb31c584fadff1/logs/main.log
- name: 3763-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8d550c6bfbd1fe0ac3cf822743ce37fc
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/21b7dbad600f6184b9e827b198627e5e
continueOn:
failed: true
- - name: 3763-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/21b7dbad600f6184b9e827b198627e5e/logs/main.log
- name: 3763-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e68642399c4135183f926d41d3ccf802
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/77bb6b0bacd8596a318cb6e560682258
continueOn:
failed: true
- - name: 3763-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/77bb6b0bacd8596a318cb6e560682258/logs/main.log
- name: 3763-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ae9e48f536cc8bdf1b69ca4515c6fdf4
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/211245d675b01a3f6d3b5ad550322e4d
- name: meshcrunchoutputpath
value: /tmp/3763defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3763-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/211245d675b01a3f6d3b5ad550322e4d/logs/main.log
- name: 3763-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ae9e48f536cc8bdf1b69ca4515c6fdf4
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ccb48c22a5e6321225f555f92456d68d
- name: meshcrunchoutputpath
value: /tmp/3763defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3763-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ccb48c22a5e6321225f555f92456d68d/logs/main.log
- name: 3763-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/38ecaee6d1c5fab5b0cb31c584fadff1
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/741ef152da2c57ccf439f52216bb2159
- name: meshcrunchoutputpath
value: /tmp/3763defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3763-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/741ef152da2c57ccf439f52216bb2159/logs/main.log
- name: 3763-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/38ecaee6d1c5fab5b0cb31c584fadff1
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/047894cdd1b60d21f4330f0fe4d7afd4
- name: meshcrunchoutputpath
value: /tmp/3763defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3763-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/047894cdd1b60d21f4330f0fe4d7afd4/logs/main.log
- name: 3763-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/21b7dbad600f6184b9e827b198627e5e
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/908dad80981c4d3bf0e5db648ee6f4bc
- name: meshcrunchoutputpath
value: /tmp/3763slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3763-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/908dad80981c4d3bf0e5db648ee6f4bc/logs/main.log
- name: 3763-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/77bb6b0bacd8596a318cb6e560682258
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/72bec184610e314307aebb580f6b8d0c
- name: meshcrunchoutputpath
value: /tmp/3763unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3763-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3763-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/72bec184610e314307aebb580f6b8d0c/logs/main.log
- name: octtreemaker-FASADEHSH
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3761defaultmeshcrunchhigh --high /tmp/3761defaultmeshcrunchpipeshigh
--high /tmp/3761slicedmeshcrunchhigh --high /tmp/3762defaultmeshcrunchhigh
--high /tmp/3762defaultmeshcrunchpipeshigh --high /tmp/3762slicedmeshcrunchhigh
--high /tmp/3763defaultmeshcrunchhigh --high /tmp/3763defaultmeshcrunchpipeshigh
--high /tmp/3763slicedmeshcrunchhigh --low /tmp/3761defaultmeshcrunchlow --low
/tmp/3761defaultmeshcrunchpipeslow --low /tmp/3761unslicedmeshcrunchlow --low
/tmp/3762defaultmeshcrunchlow --low /tmp/3762defaultmeshcrunchpipeslow --low
/tmp/3762unslicedmeshcrunchlow --low /tmp/3763defaultmeshcrunchlow --low /tmp/3763defaultmeshcrunchpipeslow
--low /tmp/3763unslicedmeshcrunchlow --out /tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3761defaultmeshcrunchhigh
- name: inputfile-3761defaultmeshcrunchpipeshigh
- name: inputfile-3761slicedmeshcrunchhigh
- name: inputfile-3762defaultmeshcrunchhigh
- name: inputfile-3762defaultmeshcrunchpipeshigh
- name: inputfile-3762slicedmeshcrunchhigh
- name: inputfile-3763defaultmeshcrunchhigh
- name: inputfile-3763defaultmeshcrunchpipeshigh
- name: inputfile-3763slicedmeshcrunchhigh
- name: inputfile-3761defaultmeshcrunchlow
- name: inputfile-3761defaultmeshcrunchpipeslow
- name: inputfile-3761unslicedmeshcrunchlow
- name: inputfile-3762defaultmeshcrunchlow
- name: inputfile-3762defaultmeshcrunchpipeslow
- name: inputfile-3762unslicedmeshcrunchlow
- name: inputfile-3763defaultmeshcrunchlow
- name: inputfile-3763defaultmeshcrunchpipeslow
- name: inputfile-3763unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3761defaultmeshcrunchhigh
path: /tmp/3761defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3761defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3761defaultmeshcrunchpipeshigh
path: /tmp/3761defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3761defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3761slicedmeshcrunchhigh
path: /tmp/3761slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3761slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3762defaultmeshcrunchhigh
path: /tmp/3762defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3762defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3762defaultmeshcrunchpipeshigh
path: /tmp/3762defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3762defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3762slicedmeshcrunchhigh
path: /tmp/3762slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3762slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3763defaultmeshcrunchhigh
path: /tmp/3763defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3763defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3763defaultmeshcrunchpipeshigh
path: /tmp/3763defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3763defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3763slicedmeshcrunchhigh
path: /tmp/3763slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3763slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3761defaultmeshcrunchlow
path: /tmp/3761defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3761defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3761defaultmeshcrunchpipeslow
path: /tmp/3761defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3761defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3761unslicedmeshcrunchlow
path: /tmp/3761unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3761unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3762defaultmeshcrunchlow
path: /tmp/3762defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3762defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3762defaultmeshcrunchpipeslow
path: /tmp/3762defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3762defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3762unslicedmeshcrunchlow
path: /tmp/3762unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3762unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3763defaultmeshcrunchlow
path: /tmp/3763defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3763defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3763defaultmeshcrunchpipeslow
path: /tmp/3763defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3763defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3763unslicedmeshcrunchlow
path: /tmp/3763unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3763unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: FASADEHSH-octtreemaker-FASADEHSH-step
steps:
- - name: octtreemaker-FASADEHSH-execute
template: octtreemaker-FASADEHSH
arguments:
parameters:
- name: inputfile-3761defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ed1828f20550d62e582937c44110fab9
- name: inputfile-3761defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/35c7a23e1898c585ba4b5d748aaeed40
- name: inputfile-3761slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/8544317d0cb86d0ab87e96c7e6bc3412
- name: inputfile-3762defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/5f0739ae02b7de81799c76895a107bb3
- name: inputfile-3762defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/2b5de837158859ad87c358ecac98ed36
- name: inputfile-3762slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f8789fc9262f61c712e45ba004e3a094
- name: inputfile-3763defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/211245d675b01a3f6d3b5ad550322e4d
- name: inputfile-3763defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/741ef152da2c57ccf439f52216bb2159
- name: inputfile-3763slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/908dad80981c4d3bf0e5db648ee6f4bc
- name: inputfile-3761defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/84f91638c0139ba3e656be5a33061dc2
- name: inputfile-3761defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/2376e6aa30be146a84744028137c136c
- name: inputfile-3761unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/75ce0b934a9e9e4ac3f1f970681ea284
- name: inputfile-3762defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/6043d1cec1c6b9797ffd499a5a759e91
- name: inputfile-3762defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b2d70ce8aaf94948d75fe31932ad23a3
- name: inputfile-3762unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/584b17afc34d28c3dca614dc94dcc903
- name: inputfile-3763defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ccb48c22a5e6321225f555f92456d68d
- name: inputfile-3763defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/047894cdd1b60d21f4330f0fe4d7afd4
- name: inputfile-3763unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/72bec184610e314307aebb580f6b8d0c
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/1d0cf85cecf72f9db362718a1ed28e48
continueOn:
failed: true
- - name: FASADEHSH-octtreemaker-FASADEHSH-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: FASADEHSH-octtreemaker-FASADEHSH-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/1d0cf85cecf72f9db362718a1ed28e48/logs/main.log
- name: obj2protobuf-FASADEHSH
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: FASADEHSH-obj2protobuf-FASADEHSH-step
steps:
- - name: obj2protobuf-FASADEHSH-execute
template: obj2protobuf-FASADEHSH
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/1d0cf85cecf72f9db362718a1ed28e48
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/bd5257f600d924c7d8d9c17048137409
continueOn:
failed: true
- - name: FASADEHSH-obj2protobuf-FASADEHSH-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: FASADEHSH-obj2protobuf-FASADEHSH-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/bd5257f600d924c7d8d9c17048137409/logs/main.log
- name: spaceoutlines-FASADEHSH
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3761ifc2graph --storeys /tmp/3761ifc2graphstorey
--graphdb /tmp/3762ifc2graph --storeys /tmp/3762ifc2graphstorey --graphdb
/tmp/3763ifc2graph --storeys /tmp/3763ifc2graphstorey --in /tmp/3761ifcopenshellspaces
--in /tmp/3762ifcopenshellspaces --in /tmp/3763ifcopenshellspaces --out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3761ifc2graph
- name: inputfile-3761ifc2graphstorey
- name: inputfile-3762ifc2graph
- name: inputfile-3762ifc2graphstorey
- name: inputfile-3763ifc2graph
- name: inputfile-3763ifc2graphstorey
- name: inputfile-3761ifcopenshellspaces
- name: inputfile-3762ifcopenshellspaces
- name: inputfile-3763ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3761ifc2graph
path: /tmp/3761ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3761ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3761ifc2graphstorey
path: /tmp/3761ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3761ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3762ifc2graph
path: /tmp/3762ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3762ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3762ifc2graphstorey
path: /tmp/3762ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3762ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3763ifc2graph
path: /tmp/3763ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3763ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3763ifc2graphstorey
path: /tmp/3763ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3763ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3761ifcopenshellspaces
path: /tmp/3761ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3761ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3762ifcopenshellspaces
path: /tmp/3762ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3762ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3763ifcopenshellspaces
path: /tmp/3763ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3763ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: FASADEHSH-spaceoutlines-FASADEHSH-step
steps:
- - name: spaceoutlines-FASADEHSH-execute
template: spaceoutlines-FASADEHSH
arguments:
parameters:
- name: inputfile-3761ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/412f64da2487f4d4b03891c1eecd904e
- name: inputfile-3761ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/412f64da2487f4d4b03891c1eecd904e.json
- name: inputfile-3762ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8a57caae89f0114d2769462d3b15f194
- name: inputfile-3762ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/8a57caae89f0114d2769462d3b15f194.json
- name: inputfile-3763ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/33b879843607206c9d660ef029e7e75e
- name: inputfile-3763ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/33b879843607206c9d660ef029e7e75e.json
- name: inputfile-3761ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/06b85906a81e09e31b99d3f4f7a78fd8
- name: inputfile-3762ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/227f15fa33162ca9aab5eba0d887d25b
- name: inputfile-3763ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/6a5ab6115b29f73866e81da322a830fc
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/0b965df2278dea979da14791a71da21f
continueOn:
failed: true
- - name: FASADEHSH-spaceoutlines-FASADEHSH-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: FASADEHSH-spaceoutlines-FASADEHSH-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/0b965df2278dea979da14791a71da21f/logs/main.log
- name: 3748-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3748-rev-3.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/2de2b90ba964cd3b611682a1083d554b
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/2de2b90ba964cd3b611682a1083d554b.json
continueOn:
failed: true
- - name: 3748-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/2de2b90ba964cd3b611682a1083d554b/logs/main.log
- name: 3748-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3748-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cfcd02cdcb419cd46814fd0106b63dd2
continueOn:
failed: true
- - name: 3748-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cfcd02cdcb419cd46814fd0106b63dd2/logs/main.log
- name: 3748-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3748-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7496828e42eca39f0b85917860ad1838
continueOn:
failed: true
- - name: 3748-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7496828e42eca39f0b85917860ad1838/logs/main.log
- name: 3748-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3748-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7ab224f2ef57db483bf40e48e25ecd24
continueOn:
failed: true
- - name: 3748-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7ab224f2ef57db483bf40e48e25ecd24/logs/main.log
- name: 3748-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3748-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3e885baf2f60551b99cec502a07c3e69
continueOn:
failed: true
- - name: 3748-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3e885baf2f60551b99cec502a07c3e69/logs/main.log
- name: 3748-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3748-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9ce1faedbc18fe99068383702d2459f8
continueOn:
failed: true
- - name: 3748-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9ce1faedbc18fe99068383702d2459f8/logs/main.log
- name: 3748-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3748-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c4e6fe254458171df11ae613956f9f05
continueOn:
failed: true
- - name: 3748-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c4e6fe254458171df11ae613956f9f05/logs/main.log
- name: 3748--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/cfcd02cdcb419cd46814fd0106b63dd2
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/61a9d3326fe86dcef72b3e1e650c065c
continueOn:
failed: true
- - name: 3748--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/61a9d3326fe86dcef72b3e1e650c065c/logs/main.log
- name: 3748-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/3e885baf2f60551b99cec502a07c3e69
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/44b5185e5c35a9645dc41b684aba2c73
continueOn:
failed: true
- - name: 3748-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/44b5185e5c35a9645dc41b684aba2c73/logs/main.log
- name: 3748-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9ce1faedbc18fe99068383702d2459f8
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b11e78854e471f3a50ef1327e5716528
continueOn:
failed: true
- - name: 3748-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b11e78854e471f3a50ef1327e5716528/logs/main.log
- name: 3748-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/c4e6fe254458171df11ae613956f9f05
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/30606af5dbac4f4a4d3e8bf49ca5011c
continueOn:
failed: true
- - name: 3748-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/30606af5dbac4f4a4d3e8bf49ca5011c/logs/main.log
- name: 3748-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/61a9d3326fe86dcef72b3e1e650c065c
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b37acb9a228fd7bf38670dd8d4c968bf
- name: meshcrunchoutputpath
value: /tmp/3748defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3748-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b37acb9a228fd7bf38670dd8d4c968bf/logs/main.log
- name: 3748-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/61a9d3326fe86dcef72b3e1e650c065c
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3f9068b9ec6ff70989ad4d5efbb0dbce
- name: meshcrunchoutputpath
value: /tmp/3748defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3748-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3f9068b9ec6ff70989ad4d5efbb0dbce/logs/main.log
- name: 3748-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/44b5185e5c35a9645dc41b684aba2c73
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f2f2e461dfe3ca772a08d7fb0b39fac7
- name: meshcrunchoutputpath
value: /tmp/3748defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3748-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f2f2e461dfe3ca772a08d7fb0b39fac7/logs/main.log
- name: 3748-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/44b5185e5c35a9645dc41b684aba2c73
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/de0d85cfae831876b94f56f9b48a28ca
- name: meshcrunchoutputpath
value: /tmp/3748defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3748-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/de0d85cfae831876b94f56f9b48a28ca/logs/main.log
- name: 3748-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/b11e78854e471f3a50ef1327e5716528
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f5d8aafaa8f0933d8fae396bd2715a44
- name: meshcrunchoutputpath
value: /tmp/3748slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3748-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f5d8aafaa8f0933d8fae396bd2715a44/logs/main.log
- name: 3748-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/30606af5dbac4f4a4d3e8bf49ca5011c
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b62979c5de92ce1cc19f3dacff8ecc99
- name: meshcrunchoutputpath
value: /tmp/3748unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3748-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3748-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b62979c5de92ce1cc19f3dacff8ecc99/logs/main.log
- name: octtreemaker-RIVSANIT
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3748defaultmeshcrunchhigh --high /tmp/3748defaultmeshcrunchpipeshigh
--high /tmp/3748slicedmeshcrunchhigh --low /tmp/3748defaultmeshcrunchlow --low
/tmp/3748defaultmeshcrunchpipeslow --low /tmp/3748unslicedmeshcrunchlow --out
/tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3748defaultmeshcrunchhigh
- name: inputfile-3748defaultmeshcrunchpipeshigh
- name: inputfile-3748slicedmeshcrunchhigh
- name: inputfile-3748defaultmeshcrunchlow
- name: inputfile-3748defaultmeshcrunchpipeslow
- name: inputfile-3748unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3748defaultmeshcrunchhigh
path: /tmp/3748defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3748defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3748defaultmeshcrunchpipeshigh
path: /tmp/3748defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3748defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3748slicedmeshcrunchhigh
path: /tmp/3748slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3748slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3748defaultmeshcrunchlow
path: /tmp/3748defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3748defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3748defaultmeshcrunchpipeslow
path: /tmp/3748defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3748defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3748unslicedmeshcrunchlow
path: /tmp/3748unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3748unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIVSANIT-octtreemaker-RIVSANIT-step
steps:
- - name: octtreemaker-RIVSANIT-execute
template: octtreemaker-RIVSANIT
arguments:
parameters:
- name: inputfile-3748defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/b37acb9a228fd7bf38670dd8d4c968bf
- name: inputfile-3748defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f2f2e461dfe3ca772a08d7fb0b39fac7
- name: inputfile-3748slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f5d8aafaa8f0933d8fae396bd2715a44
- name: inputfile-3748defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/3f9068b9ec6ff70989ad4d5efbb0dbce
- name: inputfile-3748defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/de0d85cfae831876b94f56f9b48a28ca
- name: inputfile-3748unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b62979c5de92ce1cc19f3dacff8ecc99
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/52fa0b5731a9a9c5c5f3b48ed220656b
continueOn:
failed: true
- - name: RIVSANIT-octtreemaker-RIVSANIT-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIVSANIT-octtreemaker-RIVSANIT-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/52fa0b5731a9a9c5c5f3b48ed220656b/logs/main.log
- name: obj2protobuf-RIVSANIT
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIVSANIT-obj2protobuf-RIVSANIT-step
steps:
- - name: obj2protobuf-RIVSANIT-execute
template: obj2protobuf-RIVSANIT
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/52fa0b5731a9a9c5c5f3b48ed220656b
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/5798b8de791781ee9416c5d3ed4313e7
continueOn:
failed: true
- - name: RIVSANIT-obj2protobuf-RIVSANIT-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIVSANIT-obj2protobuf-RIVSANIT-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/5798b8de791781ee9416c5d3ed4313e7/logs/main.log
- name: spaceoutlines-RIVSANIT
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3748ifc2graph --storeys /tmp/3748ifc2graphstorey
--in /tmp/3748ifcopenshellspaces --out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3748ifc2graph
- name: inputfile-3748ifc2graphstorey
- name: inputfile-3748ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3748ifc2graph
path: /tmp/3748ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3748ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3748ifc2graphstorey
path: /tmp/3748ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3748ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3748ifcopenshellspaces
path: /tmp/3748ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3748ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: RIVSANIT-spaceoutlines-RIVSANIT-step
steps:
- - name: spaceoutlines-RIVSANIT-execute
template: spaceoutlines-RIVSANIT
arguments:
parameters:
- name: inputfile-3748ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/2de2b90ba964cd3b611682a1083d554b
- name: inputfile-3748ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/2de2b90ba964cd3b611682a1083d554b.json
- name: inputfile-3748ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/7ab224f2ef57db483bf40e48e25ecd24
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/db5b29fa88bcb98a27a6644fbf677f2b
continueOn:
failed: true
- - name: RIVSANIT-spaceoutlines-RIVSANIT-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: RIVSANIT-spaceoutlines-RIVSANIT-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/db5b29fa88bcb98a27a6644fbf677f2b/logs/main.log
- name: 3745-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3745-rev-2.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/0175786aa5c078d5b7a68d02565f3692
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/0175786aa5c078d5b7a68d02565f3692.json
continueOn:
failed: true
- - name: 3745-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/0175786aa5c078d5b7a68d02565f3692/logs/main.log
- name: 3745-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3745-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/80876d622fbbd153e87cfd46174859b9
continueOn:
failed: true
- - name: 3745-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/80876d622fbbd153e87cfd46174859b9/logs/main.log
- name: 3745-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3745-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e4969e56ca2a410a749d01cee4c1ef82
continueOn:
failed: true
- - name: 3745-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e4969e56ca2a410a749d01cee4c1ef82/logs/main.log
- name: 3745-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3745-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/57b6eb287b821af1141d624f8bf79d74
continueOn:
failed: true
- - name: 3745-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/57b6eb287b821af1141d624f8bf79d74/logs/main.log
- name: 3745-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3745-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9def3c336aedab153c774a895edb9f2c
continueOn:
failed: true
- - name: 3745-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9def3c336aedab153c774a895edb9f2c/logs/main.log
- name: 3745-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3745-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ef7589f5604fe6bf515cd3d99c0a31f7
continueOn:
failed: true
- - name: 3745-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ef7589f5604fe6bf515cd3d99c0a31f7/logs/main.log
- name: 3745-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3745-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/d9be1c9a1826b41c5dda5f01d1da40b0
continueOn:
failed: true
- - name: 3745-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/d9be1c9a1826b41c5dda5f01d1da40b0/logs/main.log
- name: 3745--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/80876d622fbbd153e87cfd46174859b9
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c53cf267d775ef7ead3a20a33a6c39a2
continueOn:
failed: true
- - name: 3745--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c53cf267d775ef7ead3a20a33a6c39a2/logs/main.log
- name: 3745-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/9def3c336aedab153c774a895edb9f2c
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/befe6c1fc2d8e932eef508b958426164
continueOn:
failed: true
- - name: 3745-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/befe6c1fc2d8e932eef508b958426164/logs/main.log
- name: 3745-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ef7589f5604fe6bf515cd3d99c0a31f7
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d699d35b14abce543ddfe5085e0a10f5
continueOn:
failed: true
- - name: 3745-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d699d35b14abce543ddfe5085e0a10f5/logs/main.log
- name: 3745-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/d9be1c9a1826b41c5dda5f01d1da40b0
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ca0ef18f9c838d0c3caa17400a10c70a
continueOn:
failed: true
- - name: 3745-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ca0ef18f9c838d0c3caa17400a10c70a/logs/main.log
- name: 3745-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c53cf267d775ef7ead3a20a33a6c39a2
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a7f0fa18b8747e85b7bf5c74be671f5c
- name: meshcrunchoutputpath
value: /tmp/3745defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3745-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a7f0fa18b8747e85b7bf5c74be671f5c/logs/main.log
- name: 3745-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/c53cf267d775ef7ead3a20a33a6c39a2
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/77c069478a3080b81167d89291c08cb6
- name: meshcrunchoutputpath
value: /tmp/3745defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3745-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/77c069478a3080b81167d89291c08cb6/logs/main.log
- name: 3745-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/befe6c1fc2d8e932eef508b958426164
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fc1719d8284375abb27618efd5f80d8c
- name: meshcrunchoutputpath
value: /tmp/3745defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3745-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fc1719d8284375abb27618efd5f80d8c/logs/main.log
- name: 3745-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/befe6c1fc2d8e932eef508b958426164
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/0524613d9f5068b444b7ea93b2fe9dfc
- name: meshcrunchoutputpath
value: /tmp/3745defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3745-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/0524613d9f5068b444b7ea93b2fe9dfc/logs/main.log
- name: 3745-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/d699d35b14abce543ddfe5085e0a10f5
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ad428387c74eeda8fba98cf953e59a25
- name: meshcrunchoutputpath
value: /tmp/3745slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3745-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ad428387c74eeda8fba98cf953e59a25/logs/main.log
- name: 3745-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/ca0ef18f9c838d0c3caa17400a10c70a
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ee7b207445442c958534485f634e3f3f
- name: meshcrunchoutputpath
value: /tmp/3745unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3745-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3745-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ee7b207445442c958534485f634e3f3f/logs/main.log
- name: 3746-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3746-rev-2.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/d8e9303484c1598f038ebd691a0f5a96
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/d8e9303484c1598f038ebd691a0f5a96.json
continueOn:
failed: true
- - name: 3746-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/d8e9303484c1598f038ebd691a0f5a96/logs/main.log
- name: 3746-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3746-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/be254b83420391de778248a64e2b55e4
continueOn:
failed: true
- - name: 3746-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/be254b83420391de778248a64e2b55e4/logs/main.log
- name: 3746-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3746-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f9c87198d59f27a4ca30633b88617adc
continueOn:
failed: true
- - name: 3746-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f9c87198d59f27a4ca30633b88617adc/logs/main.log
- name: 3746-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3746-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8f9e6581ecddd7a8dc55a5f424f86a9f
continueOn:
failed: true
- - name: 3746-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8f9e6581ecddd7a8dc55a5f424f86a9f/logs/main.log
- name: 3746-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3746-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/170284becd0baf34aa9bddbba9967da9
continueOn:
failed: true
- - name: 3746-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/170284becd0baf34aa9bddbba9967da9/logs/main.log
- name: 3746-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3746-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bc6357d0b2221e4b7294dd6108757579
continueOn:
failed: true
- - name: 3746-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bc6357d0b2221e4b7294dd6108757579/logs/main.log
- name: 3746-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3746-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a76eb4f64a752cff8733230808b83b0a
continueOn:
failed: true
- - name: 3746-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a76eb4f64a752cff8733230808b83b0a/logs/main.log
- name: 3746--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/be254b83420391de778248a64e2b55e4
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/514612ed005b0160c0dac643378c3564
continueOn:
failed: true
- - name: 3746--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/514612ed005b0160c0dac643378c3564/logs/main.log
- name: 3746-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/170284becd0baf34aa9bddbba9967da9
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/8fa33206518b92fa198211fb0b02988c
continueOn:
failed: true
- - name: 3746-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/8fa33206518b92fa198211fb0b02988c/logs/main.log
- name: 3746-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bc6357d0b2221e4b7294dd6108757579
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/54bd6f33df2c7fe78763ddd731dd5a62
continueOn:
failed: true
- - name: 3746-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/54bd6f33df2c7fe78763ddd731dd5a62/logs/main.log
- name: 3746-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a76eb4f64a752cff8733230808b83b0a
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/53420e71f2acc39d94526b288b9fb1ab
continueOn:
failed: true
- - name: 3746-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/53420e71f2acc39d94526b288b9fb1ab/logs/main.log
- name: 3746-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/514612ed005b0160c0dac643378c3564
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/4bcc7a159f821f2bcfa789c55de25b83
- name: meshcrunchoutputpath
value: /tmp/3746defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3746-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/4bcc7a159f821f2bcfa789c55de25b83/logs/main.log
- name: 3746-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/514612ed005b0160c0dac643378c3564
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1db9a770872c18bc72d09dd1173689f7
- name: meshcrunchoutputpath
value: /tmp/3746defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3746-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1db9a770872c18bc72d09dd1173689f7/logs/main.log
- name: 3746-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/8fa33206518b92fa198211fb0b02988c
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f1304c1520fc23af0a1f88a1ecaa4aba
- name: meshcrunchoutputpath
value: /tmp/3746defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3746-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f1304c1520fc23af0a1f88a1ecaa4aba/logs/main.log
- name: 3746-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/8fa33206518b92fa198211fb0b02988c
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/92b63935b36f3bfede666eb203a66506
- name: meshcrunchoutputpath
value: /tmp/3746defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3746-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/92b63935b36f3bfede666eb203a66506/logs/main.log
- name: 3746-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/54bd6f33df2c7fe78763ddd731dd5a62
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/4aeabf1af60f1687447954f5940c80d2
- name: meshcrunchoutputpath
value: /tmp/3746slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3746-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/4aeabf1af60f1687447954f5940c80d2/logs/main.log
- name: 3746-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/53420e71f2acc39d94526b288b9fb1ab
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9330d0c811eca3022462ca9cddfca0e8
- name: meshcrunchoutputpath
value: /tmp/3746unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3746-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3746-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9330d0c811eca3022462ca9cddfca0e8/logs/main.log
- name: octtreemaker-UTSPA
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/octtreemaker:production-8b433a767b91dd295219c1a57d9259f68b5d652a
command:
- sh
- -c
args:
- ./convert.sh --high /tmp/3745defaultmeshcrunchhigh --high /tmp/3745defaultmeshcrunchpipeshigh
--high /tmp/3745slicedmeshcrunchhigh --high /tmp/3746defaultmeshcrunchhigh
--high /tmp/3746defaultmeshcrunchpipeshigh --high /tmp/3746slicedmeshcrunchhigh
--low /tmp/3745defaultmeshcrunchlow --low /tmp/3745defaultmeshcrunchpipeslow
--low /tmp/3745unslicedmeshcrunchlow --low /tmp/3746defaultmeshcrunchlow --low
/tmp/3746defaultmeshcrunchpipeslow --low /tmp/3746unslicedmeshcrunchlow --out
/tmp/octtree
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3745defaultmeshcrunchhigh
- name: inputfile-3745defaultmeshcrunchpipeshigh
- name: inputfile-3745slicedmeshcrunchhigh
- name: inputfile-3746defaultmeshcrunchhigh
- name: inputfile-3746defaultmeshcrunchpipeshigh
- name: inputfile-3746slicedmeshcrunchhigh
- name: inputfile-3745defaultmeshcrunchlow
- name: inputfile-3745defaultmeshcrunchpipeslow
- name: inputfile-3745unslicedmeshcrunchlow
- name: inputfile-3746defaultmeshcrunchlow
- name: inputfile-3746defaultmeshcrunchpipeslow
- name: inputfile-3746unslicedmeshcrunchlow
- name: outputfile
artifacts:
- name: artifact-inputfile-3745defaultmeshcrunchhigh
path: /tmp/3745defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3745defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3745defaultmeshcrunchpipeshigh
path: /tmp/3745defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3745defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3745slicedmeshcrunchhigh
path: /tmp/3745slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3745slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3746defaultmeshcrunchhigh
path: /tmp/3746defaultmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3746defaultmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3746defaultmeshcrunchpipeshigh
path: /tmp/3746defaultmeshcrunchpipeshigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3746defaultmeshcrunchpipeshigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3746slicedmeshcrunchhigh
path: /tmp/3746slicedmeshcrunchhigh
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3746slicedmeshcrunchhigh}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3745defaultmeshcrunchlow
path: /tmp/3745defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3745defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3745defaultmeshcrunchpipeslow
path: /tmp/3745defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3745defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3745unslicedmeshcrunchlow
path: /tmp/3745unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3745unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3746defaultmeshcrunchlow
path: /tmp/3746defaultmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3746defaultmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3746defaultmeshcrunchpipeslow
path: /tmp/3746defaultmeshcrunchpipeslow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3746defaultmeshcrunchpipeslow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3746unslicedmeshcrunchlow
path: /tmp/3746unslicedmeshcrunchlow
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3746unslicedmeshcrunchlow}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: UTSPA-octtreemaker-UTSPA-step
steps:
- - name: octtreemaker-UTSPA-execute
template: octtreemaker-UTSPA
arguments:
parameters:
- name: inputfile-3745defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/a7f0fa18b8747e85b7bf5c74be671f5c
- name: inputfile-3745defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/fc1719d8284375abb27618efd5f80d8c
- name: inputfile-3745slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ad428387c74eeda8fba98cf953e59a25
- name: inputfile-3746defaultmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/4bcc7a159f821f2bcfa789c55de25b83
- name: inputfile-3746defaultmeshcrunchpipeshigh
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/f1304c1520fc23af0a1f88a1ecaa4aba
- name: inputfile-3746slicedmeshcrunchhigh
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/4aeabf1af60f1687447954f5940c80d2
- name: inputfile-3745defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/77c069478a3080b81167d89291c08cb6
- name: inputfile-3745defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/0524613d9f5068b444b7ea93b2fe9dfc
- name: inputfile-3745unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/ee7b207445442c958534485f634e3f3f
- name: inputfile-3746defaultmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/1db9a770872c18bc72d09dd1173689f7
- name: inputfile-3746defaultmeshcrunchpipeslow
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/92b63935b36f3bfede666eb203a66506
- name: inputfile-3746unslicedmeshcrunchlow
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/9330d0c811eca3022462ca9cddfca0e8
- name: outputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/e38caf9913b05361777d46b96bd5211f
continueOn:
failed: true
- - name: UTSPA-octtreemaker-UTSPA-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: UTSPA-octtreemaker-UTSPA-step
- name: program-name
value: octtreemaker
- name: log-path
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/e38caf9913b05361777d46b96bd5211f/logs/main.log
- name: obj2protobuf-UTSPA
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/obj2protobuf:production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9
command:
- sh
- -c
args:
- ./convert.sh -i /tmp/octtree -o /tmp/protobuf
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile
- name: outputfile
artifacts:
- name: artifact-inputfile
path: /tmp/octtree
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/protobuf
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: UTSPA-obj2protobuf-UTSPA-step
steps:
- - name: obj2protobuf-UTSPA-execute
template: obj2protobuf-UTSPA
arguments:
parameters:
- name: inputfile
value: production/caches/octtreemaker/production-8b433a767b91dd295219c1a57d9259f68b5d652a/e38caf9913b05361777d46b96bd5211f
- name: outputfile
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/0db7b1d1782280da2f07806c944ed8e5
continueOn:
failed: true
- - name: UTSPA-obj2protobuf-UTSPA-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: UTSPA-obj2protobuf-UTSPA-step
- name: program-name
value: obj2protobuf
- name: log-path
value: production/caches/obj2protobuf/production-2a2d9bd2bfdc913abf85b0002a66e495e60c2be9/0db7b1d1782280da2f07806c944ed8e5/logs/main.log
- name: spaceoutlines-UTSPA
container:
image: 834659718812.dkr.ecr.eu-central-1.amazonaws.com/streambim/spaceoutlines:production-8f86befe305b663d4c014be75c359ec09ae087a0
command:
- sh
- -c
args:
- ./spaceoutlines --graphdb /tmp/3745ifc2graph --storeys /tmp/3745ifc2graphstorey
--graphdb /tmp/3746ifc2graph --storeys /tmp/3746ifc2graphstorey --in /tmp/3745ifcopenshellspaces
--in /tmp/3746ifcopenshellspaces --out /tmp/spaceoutline
nodeSelector:
argo: true
tolerations:
- Key: argo
Operator: Exists
Effect: NoSchedule
archiveLocation:
archiveLogs: true
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}/logs'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
inputs:
parameters:
- name: inputfile-3745ifc2graph
- name: inputfile-3745ifc2graphstorey
- name: inputfile-3746ifc2graph
- name: inputfile-3746ifc2graphstorey
- name: inputfile-3745ifcopenshellspaces
- name: inputfile-3746ifcopenshellspaces
- name: outputfile
artifacts:
- name: artifact-inputfile-3745ifc2graph
path: /tmp/3745ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3745ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3745ifc2graphstorey
path: /tmp/3745ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3745ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3746ifc2graph
path: /tmp/3746ifc2graph
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3746ifc2graph}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3746ifc2graphstorey
path: /tmp/3746ifc2graphstorey
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3746ifc2graphstorey}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3745ifcopenshellspaces
path: /tmp/3745ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3745ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
- name: artifact-inputfile-3746ifcopenshellspaces
path: /tmp/3746ifcopenshellspaces
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.inputfile-3746ifcopenshellspaces}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
outputs:
artifacts:
- name: artifact-outputfile
path: /tmp/spaceoutline
s3:
bucket: cmv3-data
endpoint: s3.amazonaws.com
key: '{{inputs.parameters.outputfile}}'
accessKeySecret:
name: s3-credentials
key: accesskey
secretKeySecret:
name: s3-credentials
key: secretkey
retryStrategy:
limit: 1
retryPolicy: OnError
- name: UTSPA-spaceoutlines-UTSPA-step
steps:
- - name: spaceoutlines-UTSPA-execute
template: spaceoutlines-UTSPA
arguments:
parameters:
- name: inputfile-3745ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/0175786aa5c078d5b7a68d02565f3692
- name: inputfile-3745ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/0175786aa5c078d5b7a68d02565f3692.json
- name: inputfile-3746ifc2graph
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/d8e9303484c1598f038ebd691a0f5a96
- name: inputfile-3746ifc2graphstorey
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/d8e9303484c1598f038ebd691a0f5a96.json
- name: inputfile-3745ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/57b6eb287b821af1141d624f8bf79d74
- name: inputfile-3746ifcopenshellspaces
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/8f9e6581ecddd7a8dc55a5f424f86a9f
- name: outputfile
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/a1751d1446b0c1e9f127303e9b08c40a
continueOn:
failed: true
- - name: UTSPA-spaceoutlines-UTSPA-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: UTSPA-spaceoutlines-UTSPA-step
- name: program-name
value: spaceoutlines
- name: log-path
value: production/caches/spaceoutlines/production-8f86befe305b663d4c014be75c359ec09ae087a0/a1751d1446b0c1e9f127303e9b08c40a/logs/main.log
- name: 3750-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3750-rev-2.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/b88f8a54ce2a8f6668af10d80384a955
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/b88f8a54ce2a8f6668af10d80384a955.json
continueOn:
failed: true
- - name: 3750-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/b88f8a54ce2a8f6668af10d80384a955/logs/main.log
- name: 3750-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3750-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e6905f5561c7dc3278f1e32a29187d58
continueOn:
failed: true
- - name: 3750-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e6905f5561c7dc3278f1e32a29187d58/logs/main.log
- name: 3750-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3750-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/41aebbb87f29758ed5b327f93895b071
continueOn:
failed: true
- - name: 3750-ifcopenshell-axis-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-ifcopenshell-axis-step
- name: program-name
value: ifcopenshell-axis
- name: log-path
value: production/caches/ifcopenshell_axis/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/41aebbb87f29758ed5b327f93895b071/logs/main.log
- name: 3750-ifcopenshell-spaces-step
steps:
- - name: ifcopenshell-spaces-execute
template: ifcopenshell-spaces
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3750-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ae210368281428cf12d40fd1bf6eea15
continueOn:
failed: true
- - name: 3750-ifcopenshell-spaces-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-ifcopenshell-spaces-step
- name: program-name
value: ifcopenshell-spaces
- name: log-path
value: production/caches/ifcopenshell_spaces/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/ae210368281428cf12d40fd1bf6eea15/logs/main.log
- name: 3750-ifcopenshell-pipes-step
steps:
- - name: ifcopenshell-pipes-execute
template: ifcopenshell-pipes
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3750-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a62888512e099622f433df6b5b58ba05
continueOn:
failed: true
- - name: 3750-ifcopenshell-pipes-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-ifcopenshell-pipes-step
- name: program-name
value: ifcopenshell-pipes
- name: log-path
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a62888512e099622f433df6b5b58ba05/logs/main.log
- name: 3750-ifcopenshell-layerset-sliced-step
steps:
- - name: ifcopenshell-layerset-sliced-execute
template: ifcopenshell-layerset-sliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3750-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f9f7a6b002c2b95cfcf5b3638269d51e
continueOn:
failed: true
- - name: 3750-ifcopenshell-layerset-sliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-ifcopenshell-layerset-sliced-step
- name: program-name
value: ifcopenshell-layerset-sliced
- name: log-path
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f9f7a6b002c2b95cfcf5b3638269d51e/logs/main.log
- name: 3750-ifcopenshell-layerset-unsliced-step
steps:
- - name: ifcopenshell-layerset-unsliced-execute
template: ifcopenshell-layerset-unsliced
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3750-rev-2.ifc
- name: outputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bf41bc55fcc10e1ad375082b9886a6c1
continueOn:
failed: true
- - name: 3750-ifcopenshell-layerset-unsliced-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-ifcopenshell-layerset-unsliced-step
- name: program-name
value: ifcopenshell-layerset-unsliced
- name: log-path
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bf41bc55fcc10e1ad375082b9886a6c1/logs/main.log
- name: 3750--polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/e6905f5561c7dc3278f1e32a29187d58
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/35bf89a56bbb02dfd9293b9e1aa6c575
continueOn:
failed: true
- - name: 3750--polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750--polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/35bf89a56bbb02dfd9293b9e1aa6c575/logs/main.log
- name: 3750-pipes-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_pipes/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/a62888512e099622f433df6b5b58ba05
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/97040f498b4bb5505d2773311e1484c4
continueOn:
failed: true
- - name: 3750-pipes-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-pipes-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/97040f498b4bb5505d2773311e1484c4/logs/main.log
- name: 3750-sliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_sliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/f9f7a6b002c2b95cfcf5b3638269d51e
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5184e491ecb63a0dd1c4bf3a088662c8
continueOn:
failed: true
- - name: 3750-sliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-sliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5184e491ecb63a0dd1c4bf3a088662c8/logs/main.log
- name: 3750-unsliced-polly-squeeze-high-step
steps:
- - name: polly-squeeze-high-execute
template: polly-squeeze-high
arguments:
parameters:
- name: inputfile
value: production/caches/ifcopenshell_layerset_unsliced/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bf41bc55fcc10e1ad375082b9886a6c1
- name: outputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/465f5fa80aba41e92880f2e23c4f982f
continueOn:
failed: true
- - name: 3750-unsliced-polly-squeeze-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-unsliced-polly-squeeze-high-step
- name: program-name
value: polly-squeeze-high
- name: log-path
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/465f5fa80aba41e92880f2e23c4f982f/logs/main.log
- name: 3750-default-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/35bf89a56bbb02dfd9293b9e1aa6c575
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/36d5c1f72e03c967434c6a62ff0107c1
- name: meshcrunchoutputpath
value: /tmp/3750defaultmeshcrunchhigh
continueOn:
failed: true
- - name: 3750-default-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-default-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/36d5c1f72e03c967434c6a62ff0107c1/logs/main.log
- name: 3750-default-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/35bf89a56bbb02dfd9293b9e1aa6c575
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/4b70df8cf79b0bbccc296d0d8972302f
- name: meshcrunchoutputpath
value: /tmp/3750defaultmeshcrunchlow
continueOn:
failed: true
- - name: 3750-default-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-default-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/4b70df8cf79b0bbccc296d0d8972302f/logs/main.log
- name: 3750-default-mesh-crunch-pipes-high-step
steps:
- - name: mesh-crunch-pipes-high-execute
template: mesh-crunch-pipes-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/97040f498b4bb5505d2773311e1484c4
- name: outputfile
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ddd5b580c0f0537c485f03d66e773199
- name: meshcrunchoutputpath
value: /tmp/3750defaultmeshcrunchpipeshigh
continueOn:
failed: true
- - name: 3750-default-mesh-crunch-pipes-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-default-mesh-crunch-pipes-high-step
- name: program-name
value: mesh-crunch-pipes-high
- name: log-path
value: production/caches/mesh-crunch_pipes_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/ddd5b580c0f0537c485f03d66e773199/logs/main.log
- name: 3750-default-mesh-crunch-pipes-low-step
steps:
- - name: mesh-crunch-pipes-low-execute
template: mesh-crunch-pipes-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/97040f498b4bb5505d2773311e1484c4
- name: outputfile
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b5f6b00f6d9627a41ecf7fd3ee3c6205
- name: meshcrunchoutputpath
value: /tmp/3750defaultmeshcrunchpipeslow
continueOn:
failed: true
- - name: 3750-default-mesh-crunch-pipes-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-default-mesh-crunch-pipes-low-step
- name: program-name
value: mesh-crunch-pipes-low
- name: log-path
value: production/caches/mesh-crunch_pipes_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/b5f6b00f6d9627a41ecf7fd3ee3c6205/logs/main.log
- name: 3750-sliced-mesh-crunch-high-step
steps:
- - name: mesh-crunch-high-execute
template: mesh-crunch-high
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/5184e491ecb63a0dd1c4bf3a088662c8
- name: outputfile
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/cd2e74cf9d3ccc41775ba856a90abf67
- name: meshcrunchoutputpath
value: /tmp/3750slicedmeshcrunchhigh
continueOn:
failed: true
- - name: 3750-sliced-mesh-crunch-high-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-sliced-mesh-crunch-high-step
- name: program-name
value: mesh-crunch-high
- name: log-path
value: production/caches/mesh-crunch_high/production-3d98f629c93838adee05a6f6d53abd62ef949544/cd2e74cf9d3ccc41775ba856a90abf67/logs/main.log
- name: 3750-unsliced-mesh-crunch-low-step
steps:
- - name: mesh-crunch-low-execute
template: mesh-crunch-low
arguments:
parameters:
- name: inputfile
value: production/caches/polly-squeeze_high/production-563eaa31f82fa6ea7f303ddaebcb2d1bba8567ee/465f5fa80aba41e92880f2e23c4f982f
- name: outputfile
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/022ec723292e66c72e3bc2f1b0e404cd
- name: meshcrunchoutputpath
value: /tmp/3750unslicedmeshcrunchlow
continueOn:
failed: true
- - name: 3750-unsliced-mesh-crunch-low-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3750-unsliced-mesh-crunch-low-step
- name: program-name
value: mesh-crunch-low
- name: log-path
value: production/caches/mesh-crunch_low/production-3d98f629c93838adee05a6f6d53abd62ef949544/022ec723292e66c72e3bc2f1b0e404cd/logs/main.log
- name: 3749-ifc2graph-step
steps:
- - name: ifc2graph-execute
template: ifc2graph
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3749-rev-3.ifc
- name: outputfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/510f7841dd05be941964e68ffb91a146
- name: storeysfile
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/510f7841dd05be941964e68ffb91a146.json
continueOn:
failed: true
- - name: 3749-ifc2graph-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3749-ifc2graph-step
- name: program-name
value: ifc2graph
- name: log-path
value: production/caches/ifc2graph/production-401efa8c6862293229da0055d08d743a99eacc68/510f7841dd05be941964e68ffb91a146/logs/main.log
- name: 3749-ifcopenshell-step
steps:
- - name: ifcopenshell-execute
template: ifcopenshell
arguments:
parameters:
- name: inputfile
value: rendra-projects/production/project-190/documents/document-3749-rev-3.ifc
- name: outputfile
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bdb44df7b050e81409c16e68825d789b
continueOn:
failed: true
- - name: 3749-ifcopenshell-step-log
template: log-handler
arguments:
parameters:
- name: project-id
value: "190"
- name: building-id
value: "1000"
- name: step-name
value: 3749-ifcopenshell-step
- name: program-name
value: ifcopenshell
- name: log-path
value: production/caches/ifcopenshell/production-c6268b6dac3ee7a56157fc737a183223960c2d5a/bdb44df7b050e81409c16e68825d789b/logs/main.log
- name: 3749-ifcopenshell-axis-step
steps:
- - name: ifcopenshell-axis-execute
template: ifcopenshell-axis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment