├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── doc.yml │ ├── feature_request.yml │ └── maintenance.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── on_opened_pr.yml │ ├── record_pr.yml │ ├── responded.yml │ └── stale_prs_and_issues.yml ├── .gitignore ├── .images ├── blender_submit_add_job_attachments.png ├── blender_submit_job_attachments.png ├── blender_submit_job_settings.png ├── blender_submit_scene_file_widget.png ├── blender_submit_shared_settings.png └── deadline-bundle-gui-submit-showcase.png ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cloudformation ├── README.md ├── farm_templates │ ├── apply-conda-queue-env.py │ ├── cmf_templates │ │ ├── README.md │ │ └── deadline-fleet-health-check.yaml │ ├── cuda_farm │ │ ├── README.md │ │ └── deadline-cloud-cuda-farm-template.yaml │ └── starter_farm │ │ ├── README.md │ │ └── deadline-cloud-starter-farm-template.yaml └── notification_templates │ ├── README.md │ └── budget_events_notification │ ├── README.md │ └── email_slack_integration_template.yaml ├── conda_recipes ├── README.md ├── aftereffects-25.1 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── bld.bat │ │ ├── build_win.sh │ │ └── meta.yaml ├── aftereffects-plugin-bundle │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── bld.bat │ │ ├── meta.yaml │ │ └── recipe.yaml ├── aftereffects-saber │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── bld.bat │ │ ├── build_win.sh │ │ └── meta.yaml ├── archive_files │ ├── README.md │ └── aftereffects-plugin-bundle │ │ └── win-64 │ │ └── README.md ├── blender-4.2 │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ ├── build_win.sh │ │ └── recipe.yaml ├── blender-4.3 │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ ├── build_win.sh │ │ └── recipe.yaml ├── blender-4.4 │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ ├── build_win.sh │ │ └── recipe.yaml ├── blender-4.5 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ ├── build_win.sh │ │ └── recipe.yaml ├── blender-flipfluids │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ ├── install_addon.py │ │ ├── recipe.yaml │ │ └── uninstall_addon.py ├── blender-plugin-bundle │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ └── recipe.yaml ├── cinema4d-2024 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── bld.bat │ │ ├── build_win.sh │ │ └── meta.yaml ├── cinema4d-2025 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── bld.bat │ │ ├── build_win.sh │ │ └── meta.yaml ├── cinema4d-c4dtoa-2025 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── bld.bat │ │ ├── build.sh │ │ ├── meta.yaml │ │ └── recipe.yaml ├── cinema4d-insydium-2025 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── bld.bat │ │ ├── meta.yaml │ │ └── post-link.bat ├── cinema4d-openjd │ ├── deadline-cloud.yaml │ └── recipe │ │ └── recipe.yaml ├── cinema4d-vray-2025 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── bld.bat │ │ └── meta.yaml ├── conda_build_linux_package │ ├── parameter_values.yaml │ ├── scripts │ │ ├── conda-build-package.py │ │ ├── enter-package-build-env.sh │ │ ├── openjd-vars-capture.py │ │ ├── openjd-vars-start.py │ │ └── rattler-build-package.py │ └── template.yaml ├── conda_platform_host_requirements.yaml ├── deadline-0.52 │ ├── deadline-cloud.yaml │ └── recipe │ │ └── recipe.yaml ├── deadline │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── recipe.yaml │ │ └── variants.yaml ├── houdini-20.5 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ └── recipe.yaml ├── houdini-21.0 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ └── recipe.yaml ├── houdini-redshift-2025 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── activate.sh │ │ ├── build.sh │ │ ├── deactivate.sh │ │ └── recipe.yaml ├── houdini-redshift-2026 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── activate.sh │ │ ├── build.sh │ │ ├── deactivate.sh │ │ └── recipe.yaml ├── houdini-vray-7 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ └── recipe.yaml ├── keyshot-2025 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── bld.bat │ │ └── meta.yaml ├── maya-2025 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── bld.bat │ │ ├── build.sh │ │ ├── build_win.sh │ │ ├── meta.yaml │ │ └── recipe.yaml ├── maya-2026 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ ├── meta.yaml │ │ └── recipe.yaml ├── maya-mtoa-2025 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── bld.bat │ │ ├── build.sh │ │ ├── build_win.sh │ │ ├── meta.yaml │ │ └── recipe.yaml ├── maya-mtoa-2026 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ ├── meta.yaml │ │ └── recipe.yaml ├── maya-openjd │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── recipe.yaml │ │ └── variants.yaml ├── maya-redshift-2025 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ └── recipe.yaml ├── maya-vray-2025 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ └── recipe.yaml ├── maya-vray-2026 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ └── recipe.yaml ├── nerfstudio │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ ├── recipe.yaml │ │ └── variants.yaml ├── nuke-16.0 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ └── recipe.yaml ├── nuke-denoise │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ └── recipe.yaml ├── openjd-adaptor-runtime │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── recipe.yaml │ │ └── variants.yaml ├── submit-package-job ├── submit-package-job-script.py ├── submit-package-job.bat ├── vray │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ └── recipe.yaml ├── vredcore-2025 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ │ ├── build.sh │ │ ├── meta.yaml │ │ └── recipe.yaml └── vredcore-2026 │ ├── README.md │ ├── deadline-cloud.yaml │ └── recipe │ ├── build.sh │ ├── meta.yaml │ └── recipe.yaml ├── host_configuration_scripts ├── 3dsmax │ ├── 3dsmax-2024 │ │ ├── 3dsmax-2024.ps1 │ │ └── README.md │ ├── 3dsmax-2025-and-vray │ │ ├── 3dsmax-2025-and-vray.ps1 │ │ ├── README.md │ │ └── sunflower_sphere │ │ │ ├── asset_references.yaml │ │ │ ├── parameter_values.yaml │ │ │ ├── scene │ │ │ ├── DeadlineTest_01.max │ │ │ └── shamblen-studios-AwnggmGaFms-unsplash.jpg │ │ │ ├── sunflower_sphere.mxp │ │ │ └── template.yaml │ ├── 3dsmax-2025-vray-and-aec-plugins │ │ ├── 3dsmax-2025-vray-and-aec-plugins.ps1 │ │ └── README.md │ ├── 3dsmax-2025-vray-and-tyflow │ │ ├── 3dsmax-2025-vray-and-tyflow.ps1 │ │ └── README.md │ └── README.md ├── README.md ├── aftereffects │ └── aftereffects_redgiant │ │ ├── README.md │ │ └── install-software.ps1 ├── cinema4d │ └── cinema4d_redgiant │ │ ├── README.md │ │ └── install-software.ps1 └── worker_reboot │ ├── README.md │ └── linux.sh ├── job_bundles ├── README.md ├── afterfx_render_one_task │ ├── README.md │ └── template.yaml ├── blender_render │ └── template.yaml ├── cli_job │ └── template.yaml ├── copy_s3_prefix_to_job_attachments │ ├── README.md │ ├── parameter_values.yaml │ ├── scripts │ │ ├── collect_objects.py │ │ ├── copy_objects.py │ │ ├── hash_objects.py │ │ └── save_manifest.py │ └── template.yaml ├── custom_submitters │ └── fuzzypixel_maya │ │ ├── README.md │ │ ├── __init__.py │ │ ├── fp-deadlinecloud.bmp │ │ ├── fuzzypixelMayaRender │ │ ├── asset_references.yaml │ │ ├── parameter_values.yaml │ │ └── template.yaml │ │ ├── image │ │ └── README │ │ │ ├── RenderLayers.png │ │ │ └── RenderSettings.png │ │ ├── maya_base_paths.py │ │ ├── maya_fp_deadline_render_pyqt_submitter.py │ │ ├── maya_fp_maya_submission_status.ui │ │ ├── maya_fp_maya_submission_warning.ui │ │ ├── maya_fp_maya_submitter.ui │ │ ├── maya_launch.py │ │ └── maya_launcher.py ├── gsplat_pipeline │ ├── .readme_images │ │ ├── deadline_cloud_monitor_job_table.png │ │ ├── deadline_cloud_monitor_log_task_run_details.png │ │ ├── deadline_cloud_monitor_log_view.png │ │ ├── deadline_cloud_monitor_usage_explorer_by_job.png │ │ ├── submitter_job_specific_settings.png │ │ ├── supersplat_found_subject.png │ │ ├── supersplat_initial_view.png │ │ └── supersplat_sphere_cropped.png │ ├── README.md │ ├── scripts │ │ ├── extract_video_frames.sh │ │ ├── print_workspace_dir_summary.py │ │ ├── solve_glomap_sfm.sh │ │ ├── train_gsplat_simple_trainer.sh │ │ └── train_nerfstudio_splatfacto.sh │ ├── submit_test_jobs.sh │ └── template.yaml ├── gui_control_showcase │ └── template.yaml ├── houdini_husk_usd_render │ ├── README.md │ ├── generate_usd_job.py │ ├── sample.usda │ └── template.yaml ├── job_attachments_devguide │ ├── script.sh │ └── template.yaml ├── job_attachments_devguide_output │ ├── script.sh │ └── template.yaml ├── job_dev_progression │ ├── README.md │ ├── stage_1_self_contained_template │ │ ├── sample_dataset │ │ │ └── render_times.csv │ │ └── template.yaml │ ├── stage_2_bundled_scripts │ │ ├── sample_dataset │ │ │ └── render_times.csv │ │ ├── scripts │ │ │ ├── initialize.sh │ │ │ └── process.py │ │ └── template.yaml │ ├── stage_3_bundled_scripts_shared_lib │ │ ├── sample_dataset │ │ │ └── render_times.csv │ │ ├── scripts │ │ │ ├── initialize.py │ │ │ ├── process.py │ │ │ └── shared │ │ │ │ └── progression_3_shared_library.py │ │ └── template.yaml │ └── stage_4_bundled_python_package │ │ ├── progression_4_lib │ │ ├── README.md │ │ ├── hatch.toml │ │ ├── pyproject.toml │ │ ├── requirements-testing.txt │ │ ├── src │ │ │ └── progression_4_lib │ │ │ │ ├── initialize.py │ │ │ │ ├── process.py │ │ │ │ └── standard_args.py │ │ └── test │ │ │ └── progression_4_lib │ │ │ └── test_add_standard_args.py │ │ ├── sample_dataset │ │ └── render_times.csv │ │ └── template.yaml ├── job_env_daemon_process │ └── template.yaml ├── job_env_vars │ └── template.yaml ├── job_env_with_new_command │ └── template.yaml ├── keyshot_standalone │ ├── README.md │ └── template.yaml ├── list_available_conda_packages │ ├── README.md │ └── template.yaml ├── maya_cli_render │ ├── README.md │ ├── fallinggears.ma │ ├── template.yaml │ └── workspace.mel ├── nuke_render │ ├── README.md │ ├── scene │ │ └── motionblur3d_10.nk │ └── template.yaml ├── povray-3.7 │ ├── README.md │ ├── sample │ │ └── sample.pov │ └── template.yaml ├── redshift-2025 │ ├── README.md │ ├── SimpleCubec4d.rs │ └── template.yaml ├── simple_job │ └── template.yaml ├── tile_render_maya_ffmpeg_for_blogpost │ ├── README.md │ └── template.yaml ├── tile_render_with_maya_arnold │ ├── sample_turntable_scene.ma │ └── template.yaml ├── turntable_with_maya_arnold │ ├── README.md │ ├── scenes │ │ └── turntable_base_scene.ma │ ├── screenshots │ │ ├── turntable_job_bundle_submitter_gui.png │ │ ├── turntable_job_output_video_screenshot.png │ │ └── windows_desktop_submitter_bat_file.png │ └── template.yaml ├── vray_render │ ├── README.md │ └── template.yaml ├── vred_render │ ├── README.md │ ├── scripts │ │ └── VRED_RenderScript_DeadlineCloud.py │ ├── template.yaml │ └── template_tiling.yaml └── vtk-latest │ ├── README.md │ ├── sample │ └── flow_simulation_visualization.py │ └── template.yaml └── queue_environments ├── README.md ├── conda_queue_env_console_equivalent.yaml ├── conda_queue_env_from_console.yaml ├── conda_queue_env_improved_caching.yaml ├── conda_queue_env_pyrattler.yaml └── rez_queue_env.yaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @aws-deadline/Developers -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.github/ISSUE_TEMPLATE/doc.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.github/ISSUE_TEMPLATE/maintenance.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/on_opened_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.github/workflows/on_opened_pr.yml -------------------------------------------------------------------------------- /.github/workflows/record_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.github/workflows/record_pr.yml -------------------------------------------------------------------------------- /.github/workflows/responded.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.github/workflows/responded.yml -------------------------------------------------------------------------------- /.github/workflows/stale_prs_and_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.github/workflows/stale_prs_and_issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/blender_submit_add_job_attachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.images/blender_submit_add_job_attachments.png -------------------------------------------------------------------------------- /.images/blender_submit_job_attachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.images/blender_submit_job_attachments.png -------------------------------------------------------------------------------- /.images/blender_submit_job_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.images/blender_submit_job_settings.png -------------------------------------------------------------------------------- /.images/blender_submit_scene_file_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.images/blender_submit_scene_file_widget.png -------------------------------------------------------------------------------- /.images/blender_submit_shared_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.images/blender_submit_shared_settings.png -------------------------------------------------------------------------------- /.images/deadline-bundle-gui-submit-showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/.images/deadline-bundle-gui-submit-showcase.png -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/README.md -------------------------------------------------------------------------------- /cloudformation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/cloudformation/README.md -------------------------------------------------------------------------------- /cloudformation/farm_templates/apply-conda-queue-env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/cloudformation/farm_templates/apply-conda-queue-env.py -------------------------------------------------------------------------------- /cloudformation/farm_templates/cmf_templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/cloudformation/farm_templates/cmf_templates/README.md -------------------------------------------------------------------------------- /cloudformation/farm_templates/cmf_templates/deadline-fleet-health-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/cloudformation/farm_templates/cmf_templates/deadline-fleet-health-check.yaml -------------------------------------------------------------------------------- /cloudformation/farm_templates/cuda_farm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/cloudformation/farm_templates/cuda_farm/README.md -------------------------------------------------------------------------------- /cloudformation/farm_templates/cuda_farm/deadline-cloud-cuda-farm-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/cloudformation/farm_templates/cuda_farm/deadline-cloud-cuda-farm-template.yaml -------------------------------------------------------------------------------- /cloudformation/farm_templates/starter_farm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/cloudformation/farm_templates/starter_farm/README.md -------------------------------------------------------------------------------- /cloudformation/farm_templates/starter_farm/deadline-cloud-starter-farm-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/cloudformation/farm_templates/starter_farm/deadline-cloud-starter-farm-template.yaml -------------------------------------------------------------------------------- /cloudformation/notification_templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/cloudformation/notification_templates/README.md -------------------------------------------------------------------------------- /cloudformation/notification_templates/budget_events_notification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/cloudformation/notification_templates/budget_events_notification/README.md -------------------------------------------------------------------------------- /cloudformation/notification_templates/budget_events_notification/email_slack_integration_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/cloudformation/notification_templates/budget_events_notification/email_slack_integration_template.yaml -------------------------------------------------------------------------------- /conda_recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/README.md -------------------------------------------------------------------------------- /conda_recipes/aftereffects-25.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-25.1/README.md -------------------------------------------------------------------------------- /conda_recipes/aftereffects-25.1/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-25.1/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/aftereffects-25.1/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | bash %RECIPE_DIR%/build_win.sh 2 | if errorlevel 1 exit 1 -------------------------------------------------------------------------------- /conda_recipes/aftereffects-25.1/recipe/build_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-25.1/recipe/build_win.sh -------------------------------------------------------------------------------- /conda_recipes/aftereffects-25.1/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-25.1/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/aftereffects-plugin-bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-plugin-bundle/README.md -------------------------------------------------------------------------------- /conda_recipes/aftereffects-plugin-bundle/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-plugin-bundle/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/aftereffects-plugin-bundle/recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-plugin-bundle/recipe/bld.bat -------------------------------------------------------------------------------- /conda_recipes/aftereffects-plugin-bundle/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-plugin-bundle/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/aftereffects-plugin-bundle/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-plugin-bundle/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/aftereffects-saber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-saber/README.md -------------------------------------------------------------------------------- /conda_recipes/aftereffects-saber/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-saber/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/aftereffects-saber/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | bash %RECIPE_DIR%/build_win.sh 2 | if errorlevel 1 exit 1 -------------------------------------------------------------------------------- /conda_recipes/aftereffects-saber/recipe/build_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-saber/recipe/build_win.sh -------------------------------------------------------------------------------- /conda_recipes/aftereffects-saber/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/aftereffects-saber/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/archive_files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/archive_files/README.md -------------------------------------------------------------------------------- /conda_recipes/archive_files/aftereffects-plugin-bundle/win-64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/archive_files/aftereffects-plugin-bundle/win-64/README.md -------------------------------------------------------------------------------- /conda_recipes/blender-4.2/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.2/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/blender-4.2/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.2/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/blender-4.2/recipe/build_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.2/recipe/build_win.sh -------------------------------------------------------------------------------- /conda_recipes/blender-4.2/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.2/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/blender-4.3/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.3/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/blender-4.3/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.3/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/blender-4.3/recipe/build_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.3/recipe/build_win.sh -------------------------------------------------------------------------------- /conda_recipes/blender-4.3/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.3/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/blender-4.4/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.4/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/blender-4.4/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.4/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/blender-4.4/recipe/build_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.4/recipe/build_win.sh -------------------------------------------------------------------------------- /conda_recipes/blender-4.4/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.4/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/blender-4.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.5/README.md -------------------------------------------------------------------------------- /conda_recipes/blender-4.5/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.5/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/blender-4.5/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.5/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/blender-4.5/recipe/build_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.5/recipe/build_win.sh -------------------------------------------------------------------------------- /conda_recipes/blender-4.5/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-4.5/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/blender-flipfluids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-flipfluids/README.md -------------------------------------------------------------------------------- /conda_recipes/blender-flipfluids/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-flipfluids/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/blender-flipfluids/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-flipfluids/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/blender-flipfluids/recipe/install_addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-flipfluids/recipe/install_addon.py -------------------------------------------------------------------------------- /conda_recipes/blender-flipfluids/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-flipfluids/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/blender-flipfluids/recipe/uninstall_addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-flipfluids/recipe/uninstall_addon.py -------------------------------------------------------------------------------- /conda_recipes/blender-plugin-bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-plugin-bundle/README.md -------------------------------------------------------------------------------- /conda_recipes/blender-plugin-bundle/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-plugin-bundle/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/blender-plugin-bundle/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-plugin-bundle/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/blender-plugin-bundle/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/blender-plugin-bundle/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-2024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-2024/README.md -------------------------------------------------------------------------------- /conda_recipes/cinema4d-2024/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-2024/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-2024/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | bash %RECIPE_DIR%/build_win.sh 2 | if errorlevel 1 exit 1 -------------------------------------------------------------------------------- /conda_recipes/cinema4d-2024/recipe/build_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-2024/recipe/build_win.sh -------------------------------------------------------------------------------- /conda_recipes/cinema4d-2024/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-2024/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-2025/README.md -------------------------------------------------------------------------------- /conda_recipes/cinema4d-2025/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-2025/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-2025/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | bash %RECIPE_DIR%/build_win.sh 2 | if errorlevel 1 exit 1 -------------------------------------------------------------------------------- /conda_recipes/cinema4d-2025/recipe/build_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-2025/recipe/build_win.sh -------------------------------------------------------------------------------- /conda_recipes/cinema4d-2025/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-2025/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-c4dtoa-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-c4dtoa-2025/README.md -------------------------------------------------------------------------------- /conda_recipes/cinema4d-c4dtoa-2025/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-c4dtoa-2025/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-c4dtoa-2025/recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-c4dtoa-2025/recipe/bld.bat -------------------------------------------------------------------------------- /conda_recipes/cinema4d-c4dtoa-2025/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-c4dtoa-2025/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/cinema4d-c4dtoa-2025/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-c4dtoa-2025/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-c4dtoa-2025/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-c4dtoa-2025/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-insydium-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-insydium-2025/README.md -------------------------------------------------------------------------------- /conda_recipes/cinema4d-insydium-2025/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-insydium-2025/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-insydium-2025/recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-insydium-2025/recipe/bld.bat -------------------------------------------------------------------------------- /conda_recipes/cinema4d-insydium-2025/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-insydium-2025/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-insydium-2025/recipe/post-link.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-insydium-2025/recipe/post-link.bat -------------------------------------------------------------------------------- /conda_recipes/cinema4d-openjd/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-openjd/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-openjd/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-openjd/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-vray-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-vray-2025/README.md -------------------------------------------------------------------------------- /conda_recipes/cinema4d-vray-2025/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-vray-2025/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/cinema4d-vray-2025/recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-vray-2025/recipe/bld.bat -------------------------------------------------------------------------------- /conda_recipes/cinema4d-vray-2025/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/cinema4d-vray-2025/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/conda_build_linux_package/parameter_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/conda_build_linux_package/parameter_values.yaml -------------------------------------------------------------------------------- /conda_recipes/conda_build_linux_package/scripts/conda-build-package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/conda_build_linux_package/scripts/conda-build-package.py -------------------------------------------------------------------------------- /conda_recipes/conda_build_linux_package/scripts/enter-package-build-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/conda_build_linux_package/scripts/enter-package-build-env.sh -------------------------------------------------------------------------------- /conda_recipes/conda_build_linux_package/scripts/openjd-vars-capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/conda_build_linux_package/scripts/openjd-vars-capture.py -------------------------------------------------------------------------------- /conda_recipes/conda_build_linux_package/scripts/openjd-vars-start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/conda_build_linux_package/scripts/openjd-vars-start.py -------------------------------------------------------------------------------- /conda_recipes/conda_build_linux_package/scripts/rattler-build-package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/conda_build_linux_package/scripts/rattler-build-package.py -------------------------------------------------------------------------------- /conda_recipes/conda_build_linux_package/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/conda_build_linux_package/template.yaml -------------------------------------------------------------------------------- /conda_recipes/conda_platform_host_requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/conda_platform_host_requirements.yaml -------------------------------------------------------------------------------- /conda_recipes/deadline-0.52/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/deadline-0.52/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/deadline-0.52/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/deadline-0.52/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/deadline/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/deadline/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/deadline/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/deadline/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/deadline/recipe/variants.yaml: -------------------------------------------------------------------------------- 1 | python: 2 | - 3.13 3 | -------------------------------------------------------------------------------- /conda_recipes/houdini-20.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-20.5/README.md -------------------------------------------------------------------------------- /conda_recipes/houdini-20.5/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-20.5/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/houdini-20.5/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-20.5/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/houdini-20.5/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-20.5/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/houdini-21.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-21.0/README.md -------------------------------------------------------------------------------- /conda_recipes/houdini-21.0/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-21.0/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/houdini-21.0/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-21.0/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/houdini-21.0/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-21.0/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2025/README.md -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2025/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2025/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2025/recipe/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2025/recipe/activate.sh -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2025/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2025/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2025/recipe/deactivate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2025/recipe/deactivate.sh -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2025/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2025/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2026/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2026/README.md -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2026/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2026/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2026/recipe/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2026/recipe/activate.sh -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2026/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2026/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2026/recipe/deactivate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2026/recipe/deactivate.sh -------------------------------------------------------------------------------- /conda_recipes/houdini-redshift-2026/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-redshift-2026/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/houdini-vray-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-vray-7/README.md -------------------------------------------------------------------------------- /conda_recipes/houdini-vray-7/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-vray-7/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/houdini-vray-7/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-vray-7/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/houdini-vray-7/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/houdini-vray-7/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/keyshot-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/keyshot-2025/README.md -------------------------------------------------------------------------------- /conda_recipes/keyshot-2025/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/keyshot-2025/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/keyshot-2025/recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/keyshot-2025/recipe/bld.bat -------------------------------------------------------------------------------- /conda_recipes/keyshot-2025/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/keyshot-2025/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-2025/README.md -------------------------------------------------------------------------------- /conda_recipes/maya-2025/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-2025/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-2025/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | bash %RECIPE_DIR%/build_win.sh 2 | if errorlevel 1 exit 1 3 | -------------------------------------------------------------------------------- /conda_recipes/maya-2025/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-2025/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/maya-2025/recipe/build_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-2025/recipe/build_win.sh -------------------------------------------------------------------------------- /conda_recipes/maya-2025/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-2025/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-2025/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-2025/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-2026/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-2026/README.md -------------------------------------------------------------------------------- /conda_recipes/maya-2026/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-2026/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-2026/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-2026/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/maya-2026/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-2026/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-2026/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-2026/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-mtoa-2025/README.md -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2025/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-mtoa-2025/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2025/recipe/bld.bat: -------------------------------------------------------------------------------- 1 | bash %RECIPE_DIR%/build_win.sh 2 | if errorlevel 1 exit 1 3 | -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2025/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-mtoa-2025/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2025/recipe/build_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-mtoa-2025/recipe/build_win.sh -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2025/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-mtoa-2025/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2025/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-mtoa-2025/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2026/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-mtoa-2026/README.md -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2026/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-mtoa-2026/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2026/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-mtoa-2026/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2026/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-mtoa-2026/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-mtoa-2026/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-mtoa-2026/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-openjd/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-openjd/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-openjd/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-openjd/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-openjd/recipe/variants.yaml: -------------------------------------------------------------------------------- 1 | python: 2 | - 3.13 3 | -------------------------------------------------------------------------------- /conda_recipes/maya-redshift-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-redshift-2025/README.md -------------------------------------------------------------------------------- /conda_recipes/maya-redshift-2025/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-redshift-2025/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-redshift-2025/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-redshift-2025/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/maya-redshift-2025/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-redshift-2025/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-vray-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-vray-2025/README.md -------------------------------------------------------------------------------- /conda_recipes/maya-vray-2025/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-vray-2025/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-vray-2025/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-vray-2025/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/maya-vray-2025/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-vray-2025/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-vray-2026/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-vray-2026/README.md -------------------------------------------------------------------------------- /conda_recipes/maya-vray-2026/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-vray-2026/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/maya-vray-2026/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-vray-2026/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/maya-vray-2026/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/maya-vray-2026/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/nerfstudio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nerfstudio/README.md -------------------------------------------------------------------------------- /conda_recipes/nerfstudio/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nerfstudio/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/nerfstudio/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nerfstudio/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/nerfstudio/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nerfstudio/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/nerfstudio/recipe/variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nerfstudio/recipe/variants.yaml -------------------------------------------------------------------------------- /conda_recipes/nuke-16.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nuke-16.0/README.md -------------------------------------------------------------------------------- /conda_recipes/nuke-16.0/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nuke-16.0/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/nuke-16.0/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nuke-16.0/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/nuke-16.0/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nuke-16.0/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/nuke-denoise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nuke-denoise/README.md -------------------------------------------------------------------------------- /conda_recipes/nuke-denoise/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nuke-denoise/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/nuke-denoise/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nuke-denoise/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/nuke-denoise/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/nuke-denoise/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/openjd-adaptor-runtime/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/openjd-adaptor-runtime/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/openjd-adaptor-runtime/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/openjd-adaptor-runtime/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/openjd-adaptor-runtime/recipe/variants.yaml: -------------------------------------------------------------------------------- 1 | python: 2 | - 3.13 3 | -------------------------------------------------------------------------------- /conda_recipes/submit-package-job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/submit-package-job -------------------------------------------------------------------------------- /conda_recipes/submit-package-job-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/submit-package-job-script.py -------------------------------------------------------------------------------- /conda_recipes/submit-package-job.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/submit-package-job.bat -------------------------------------------------------------------------------- /conda_recipes/vray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vray/README.md -------------------------------------------------------------------------------- /conda_recipes/vray/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vray/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/vray/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vray/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/vray/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vray/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/vredcore-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vredcore-2025/README.md -------------------------------------------------------------------------------- /conda_recipes/vredcore-2025/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vredcore-2025/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/vredcore-2025/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vredcore-2025/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/vredcore-2025/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vredcore-2025/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/vredcore-2025/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vredcore-2025/recipe/recipe.yaml -------------------------------------------------------------------------------- /conda_recipes/vredcore-2026/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vredcore-2026/README.md -------------------------------------------------------------------------------- /conda_recipes/vredcore-2026/deadline-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vredcore-2026/deadline-cloud.yaml -------------------------------------------------------------------------------- /conda_recipes/vredcore-2026/recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vredcore-2026/recipe/build.sh -------------------------------------------------------------------------------- /conda_recipes/vredcore-2026/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vredcore-2026/recipe/meta.yaml -------------------------------------------------------------------------------- /conda_recipes/vredcore-2026/recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/conda_recipes/vredcore-2026/recipe/recipe.yaml -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2024/3dsmax-2024.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2024/3dsmax-2024.ps1 -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2024/README.md -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/3dsmax-2025-and-vray.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/3dsmax-2025-and-vray.ps1 -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/README.md -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/asset_references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/asset_references.yaml -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/parameter_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/parameter_values.yaml -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/scene/DeadlineTest_01.max: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/scene/DeadlineTest_01.max -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/scene/shamblen-studios-AwnggmGaFms-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/scene/shamblen-studios-AwnggmGaFms-unsplash.jpg -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/sunflower_sphere.mxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/sunflower_sphere.mxp -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-and-vray/sunflower_sphere/template.yaml -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-vray-and-aec-plugins/3dsmax-2025-vray-and-aec-plugins.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-vray-and-aec-plugins/3dsmax-2025-vray-and-aec-plugins.ps1 -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-vray-and-aec-plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-vray-and-aec-plugins/README.md -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-vray-and-tyflow/3dsmax-2025-vray-and-tyflow.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-vray-and-tyflow/3dsmax-2025-vray-and-tyflow.ps1 -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/3dsmax-2025-vray-and-tyflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/3dsmax-2025-vray-and-tyflow/README.md -------------------------------------------------------------------------------- /host_configuration_scripts/3dsmax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/3dsmax/README.md -------------------------------------------------------------------------------- /host_configuration_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/README.md -------------------------------------------------------------------------------- /host_configuration_scripts/aftereffects/aftereffects_redgiant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/aftereffects/aftereffects_redgiant/README.md -------------------------------------------------------------------------------- /host_configuration_scripts/aftereffects/aftereffects_redgiant/install-software.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/aftereffects/aftereffects_redgiant/install-software.ps1 -------------------------------------------------------------------------------- /host_configuration_scripts/cinema4d/cinema4d_redgiant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/cinema4d/cinema4d_redgiant/README.md -------------------------------------------------------------------------------- /host_configuration_scripts/cinema4d/cinema4d_redgiant/install-software.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/cinema4d/cinema4d_redgiant/install-software.ps1 -------------------------------------------------------------------------------- /host_configuration_scripts/worker_reboot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/worker_reboot/README.md -------------------------------------------------------------------------------- /host_configuration_scripts/worker_reboot/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/host_configuration_scripts/worker_reboot/linux.sh -------------------------------------------------------------------------------- /job_bundles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/README.md -------------------------------------------------------------------------------- /job_bundles/afterfx_render_one_task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/afterfx_render_one_task/README.md -------------------------------------------------------------------------------- /job_bundles/afterfx_render_one_task/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/afterfx_render_one_task/template.yaml -------------------------------------------------------------------------------- /job_bundles/blender_render/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/blender_render/template.yaml -------------------------------------------------------------------------------- /job_bundles/cli_job/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/cli_job/template.yaml -------------------------------------------------------------------------------- /job_bundles/copy_s3_prefix_to_job_attachments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/copy_s3_prefix_to_job_attachments/README.md -------------------------------------------------------------------------------- /job_bundles/copy_s3_prefix_to_job_attachments/parameter_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/copy_s3_prefix_to_job_attachments/parameter_values.yaml -------------------------------------------------------------------------------- /job_bundles/copy_s3_prefix_to_job_attachments/scripts/collect_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/copy_s3_prefix_to_job_attachments/scripts/collect_objects.py -------------------------------------------------------------------------------- /job_bundles/copy_s3_prefix_to_job_attachments/scripts/copy_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/copy_s3_prefix_to_job_attachments/scripts/copy_objects.py -------------------------------------------------------------------------------- /job_bundles/copy_s3_prefix_to_job_attachments/scripts/hash_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/copy_s3_prefix_to_job_attachments/scripts/hash_objects.py -------------------------------------------------------------------------------- /job_bundles/copy_s3_prefix_to_job_attachments/scripts/save_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/copy_s3_prefix_to_job_attachments/scripts/save_manifest.py -------------------------------------------------------------------------------- /job_bundles/copy_s3_prefix_to_job_attachments/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/copy_s3_prefix_to_job_attachments/template.yaml -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/README.md -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/fp-deadlinecloud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/fp-deadlinecloud.bmp -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/fuzzypixelMayaRender/asset_references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/fuzzypixelMayaRender/asset_references.yaml -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/fuzzypixelMayaRender/parameter_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/fuzzypixelMayaRender/parameter_values.yaml -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/fuzzypixelMayaRender/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/fuzzypixelMayaRender/template.yaml -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/image/README/RenderLayers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/image/README/RenderLayers.png -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/image/README/RenderSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/image/README/RenderSettings.png -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/maya_base_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/maya_base_paths.py -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/maya_fp_deadline_render_pyqt_submitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/maya_fp_deadline_render_pyqt_submitter.py -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/maya_fp_maya_submission_status.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/maya_fp_maya_submission_status.ui -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/maya_fp_maya_submission_warning.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/maya_fp_maya_submission_warning.ui -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/maya_fp_maya_submitter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/maya_fp_maya_submitter.ui -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/maya_launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/maya_launch.py -------------------------------------------------------------------------------- /job_bundles/custom_submitters/fuzzypixel_maya/maya_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/custom_submitters/fuzzypixel_maya/maya_launcher.py -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/.readme_images/deadline_cloud_monitor_job_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/.readme_images/deadline_cloud_monitor_job_table.png -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/.readme_images/deadline_cloud_monitor_log_task_run_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/.readme_images/deadline_cloud_monitor_log_task_run_details.png -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/.readme_images/deadline_cloud_monitor_log_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/.readme_images/deadline_cloud_monitor_log_view.png -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/.readme_images/deadline_cloud_monitor_usage_explorer_by_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/.readme_images/deadline_cloud_monitor_usage_explorer_by_job.png -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/.readme_images/submitter_job_specific_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/.readme_images/submitter_job_specific_settings.png -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/.readme_images/supersplat_found_subject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/.readme_images/supersplat_found_subject.png -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/.readme_images/supersplat_initial_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/.readme_images/supersplat_initial_view.png -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/.readme_images/supersplat_sphere_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/.readme_images/supersplat_sphere_cropped.png -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/README.md -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/scripts/extract_video_frames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/scripts/extract_video_frames.sh -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/scripts/print_workspace_dir_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/scripts/print_workspace_dir_summary.py -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/scripts/solve_glomap_sfm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/scripts/solve_glomap_sfm.sh -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/scripts/train_gsplat_simple_trainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/scripts/train_gsplat_simple_trainer.sh -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/scripts/train_nerfstudio_splatfacto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/scripts/train_nerfstudio_splatfacto.sh -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/submit_test_jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/submit_test_jobs.sh -------------------------------------------------------------------------------- /job_bundles/gsplat_pipeline/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gsplat_pipeline/template.yaml -------------------------------------------------------------------------------- /job_bundles/gui_control_showcase/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/gui_control_showcase/template.yaml -------------------------------------------------------------------------------- /job_bundles/houdini_husk_usd_render/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/houdini_husk_usd_render/README.md -------------------------------------------------------------------------------- /job_bundles/houdini_husk_usd_render/generate_usd_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/houdini_husk_usd_render/generate_usd_job.py -------------------------------------------------------------------------------- /job_bundles/houdini_husk_usd_render/sample.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/houdini_husk_usd_render/sample.usda -------------------------------------------------------------------------------- /job_bundles/houdini_husk_usd_render/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/houdini_husk_usd_render/template.yaml -------------------------------------------------------------------------------- /job_bundles/job_attachments_devguide/script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Script location: $0" -------------------------------------------------------------------------------- /job_bundles/job_attachments_devguide/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_attachments_devguide/template.yaml -------------------------------------------------------------------------------- /job_bundles/job_attachments_devguide_output/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_attachments_devguide_output/script.sh -------------------------------------------------------------------------------- /job_bundles/job_attachments_devguide_output/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_attachments_devguide_output/template.yaml -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/README.md -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_1_self_contained_template/sample_dataset/render_times.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_1_self_contained_template/sample_dataset/render_times.csv -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_1_self_contained_template/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_1_self_contained_template/template.yaml -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_2_bundled_scripts/sample_dataset/render_times.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_2_bundled_scripts/sample_dataset/render_times.csv -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_2_bundled_scripts/scripts/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_2_bundled_scripts/scripts/initialize.sh -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_2_bundled_scripts/scripts/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_2_bundled_scripts/scripts/process.py -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_2_bundled_scripts/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_2_bundled_scripts/template.yaml -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_3_bundled_scripts_shared_lib/sample_dataset/render_times.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_3_bundled_scripts_shared_lib/sample_dataset/render_times.csv -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_3_bundled_scripts_shared_lib/scripts/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_3_bundled_scripts_shared_lib/scripts/initialize.py -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_3_bundled_scripts_shared_lib/scripts/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_3_bundled_scripts_shared_lib/scripts/process.py -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_3_bundled_scripts_shared_lib/scripts/shared/progression_3_shared_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_3_bundled_scripts_shared_lib/scripts/shared/progression_3_shared_library.py -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_3_bundled_scripts_shared_lib/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_3_bundled_scripts_shared_lib/template.yaml -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/README.md -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/hatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/hatch.toml -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/pyproject.toml -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/requirements-testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/requirements-testing.txt -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/src/progression_4_lib/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/src/progression_4_lib/initialize.py -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/src/progression_4_lib/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/src/progression_4_lib/process.py -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/src/progression_4_lib/standard_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/src/progression_4_lib/standard_args.py -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/test/progression_4_lib/test_add_standard_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_4_bundled_python_package/progression_4_lib/test/progression_4_lib/test_add_standard_args.py -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_4_bundled_python_package/sample_dataset/render_times.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_4_bundled_python_package/sample_dataset/render_times.csv -------------------------------------------------------------------------------- /job_bundles/job_dev_progression/stage_4_bundled_python_package/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_dev_progression/stage_4_bundled_python_package/template.yaml -------------------------------------------------------------------------------- /job_bundles/job_env_daemon_process/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_env_daemon_process/template.yaml -------------------------------------------------------------------------------- /job_bundles/job_env_vars/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_env_vars/template.yaml -------------------------------------------------------------------------------- /job_bundles/job_env_with_new_command/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/job_env_with_new_command/template.yaml -------------------------------------------------------------------------------- /job_bundles/keyshot_standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/keyshot_standalone/README.md -------------------------------------------------------------------------------- /job_bundles/keyshot_standalone/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/keyshot_standalone/template.yaml -------------------------------------------------------------------------------- /job_bundles/list_available_conda_packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/list_available_conda_packages/README.md -------------------------------------------------------------------------------- /job_bundles/list_available_conda_packages/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/list_available_conda_packages/template.yaml -------------------------------------------------------------------------------- /job_bundles/maya_cli_render/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/maya_cli_render/README.md -------------------------------------------------------------------------------- /job_bundles/maya_cli_render/fallinggears.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/maya_cli_render/fallinggears.ma -------------------------------------------------------------------------------- /job_bundles/maya_cli_render/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/maya_cli_render/template.yaml -------------------------------------------------------------------------------- /job_bundles/maya_cli_render/workspace.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/maya_cli_render/workspace.mel -------------------------------------------------------------------------------- /job_bundles/nuke_render/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/nuke_render/README.md -------------------------------------------------------------------------------- /job_bundles/nuke_render/scene/motionblur3d_10.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/nuke_render/scene/motionblur3d_10.nk -------------------------------------------------------------------------------- /job_bundles/nuke_render/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/nuke_render/template.yaml -------------------------------------------------------------------------------- /job_bundles/povray-3.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/povray-3.7/README.md -------------------------------------------------------------------------------- /job_bundles/povray-3.7/sample/sample.pov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/povray-3.7/sample/sample.pov -------------------------------------------------------------------------------- /job_bundles/povray-3.7/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/povray-3.7/template.yaml -------------------------------------------------------------------------------- /job_bundles/redshift-2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/redshift-2025/README.md -------------------------------------------------------------------------------- /job_bundles/redshift-2025/SimpleCubec4d.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/redshift-2025/SimpleCubec4d.rs -------------------------------------------------------------------------------- /job_bundles/redshift-2025/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/redshift-2025/template.yaml -------------------------------------------------------------------------------- /job_bundles/simple_job/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/simple_job/template.yaml -------------------------------------------------------------------------------- /job_bundles/tile_render_maya_ffmpeg_for_blogpost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/tile_render_maya_ffmpeg_for_blogpost/README.md -------------------------------------------------------------------------------- /job_bundles/tile_render_maya_ffmpeg_for_blogpost/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/tile_render_maya_ffmpeg_for_blogpost/template.yaml -------------------------------------------------------------------------------- /job_bundles/tile_render_with_maya_arnold/sample_turntable_scene.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/tile_render_with_maya_arnold/sample_turntable_scene.ma -------------------------------------------------------------------------------- /job_bundles/tile_render_with_maya_arnold/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/tile_render_with_maya_arnold/template.yaml -------------------------------------------------------------------------------- /job_bundles/turntable_with_maya_arnold/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/turntable_with_maya_arnold/README.md -------------------------------------------------------------------------------- /job_bundles/turntable_with_maya_arnold/scenes/turntable_base_scene.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/turntable_with_maya_arnold/scenes/turntable_base_scene.ma -------------------------------------------------------------------------------- /job_bundles/turntable_with_maya_arnold/screenshots/turntable_job_bundle_submitter_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/turntable_with_maya_arnold/screenshots/turntable_job_bundle_submitter_gui.png -------------------------------------------------------------------------------- /job_bundles/turntable_with_maya_arnold/screenshots/turntable_job_output_video_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/turntable_with_maya_arnold/screenshots/turntable_job_output_video_screenshot.png -------------------------------------------------------------------------------- /job_bundles/turntable_with_maya_arnold/screenshots/windows_desktop_submitter_bat_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/turntable_with_maya_arnold/screenshots/windows_desktop_submitter_bat_file.png -------------------------------------------------------------------------------- /job_bundles/turntable_with_maya_arnold/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/turntable_with_maya_arnold/template.yaml -------------------------------------------------------------------------------- /job_bundles/vray_render/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/vray_render/README.md -------------------------------------------------------------------------------- /job_bundles/vray_render/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/vray_render/template.yaml -------------------------------------------------------------------------------- /job_bundles/vred_render/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/vred_render/README.md -------------------------------------------------------------------------------- /job_bundles/vred_render/scripts/VRED_RenderScript_DeadlineCloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/vred_render/scripts/VRED_RenderScript_DeadlineCloud.py -------------------------------------------------------------------------------- /job_bundles/vred_render/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/vred_render/template.yaml -------------------------------------------------------------------------------- /job_bundles/vred_render/template_tiling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/vred_render/template_tiling.yaml -------------------------------------------------------------------------------- /job_bundles/vtk-latest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/vtk-latest/README.md -------------------------------------------------------------------------------- /job_bundles/vtk-latest/sample/flow_simulation_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/vtk-latest/sample/flow_simulation_visualization.py -------------------------------------------------------------------------------- /job_bundles/vtk-latest/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/job_bundles/vtk-latest/template.yaml -------------------------------------------------------------------------------- /queue_environments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/queue_environments/README.md -------------------------------------------------------------------------------- /queue_environments/conda_queue_env_console_equivalent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/queue_environments/conda_queue_env_console_equivalent.yaml -------------------------------------------------------------------------------- /queue_environments/conda_queue_env_from_console.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/queue_environments/conda_queue_env_from_console.yaml -------------------------------------------------------------------------------- /queue_environments/conda_queue_env_improved_caching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/queue_environments/conda_queue_env_improved_caching.yaml -------------------------------------------------------------------------------- /queue_environments/conda_queue_env_pyrattler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/queue_environments/conda_queue_env_pyrattler.yaml -------------------------------------------------------------------------------- /queue_environments/rez_queue_env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-deadline/deadline-cloud-samples/HEAD/queue_environments/rez_queue_env.yaml --------------------------------------------------------------------------------