-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1023 from ynput/enhancement/farm-env-variables
Chore: Set environment variables for farm
- Loading branch information
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
client/ayon_core/plugins/publish/collect_farm_env_variables.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import os | ||
|
||
import pyblish.api | ||
|
||
from ayon_core.pipeline.publish import FARM_JOB_ENV_DATA_KEY | ||
|
||
|
||
class CollectCoreJobEnvVars(pyblish.api.ContextPlugin): | ||
"""Collect set of environment variables to submit with deadline jobs""" | ||
order = pyblish.api.CollectorOrder - 0.45 | ||
label = "AYON core Farm Environment Variables" | ||
targets = ["local"] | ||
|
||
def process(self, context): | ||
env = context.data.setdefault(FARM_JOB_ENV_DATA_KEY, {}) | ||
for key in [ | ||
"AYON_BUNDLE_NAME", | ||
"AYON_DEFAULT_SETTINGS_VARIANT", | ||
"AYON_PROJECT_NAME", | ||
"AYON_FOLDER_PATH", | ||
"AYON_TASK_NAME", | ||
"AYON_LOG_NO_COLORS", | ||
"AYON_IN_TESTS", | ||
# NOTE Not sure why workdir is needed? | ||
"AYON_WORKDIR", | ||
]: | ||
value = os.getenv(key) | ||
if value: | ||
self.log.debug(f"Setting job env: {key}: {value}") | ||
env[key] = value | ||
|