@@ -72,7 +72,7 @@ def main():
72
72
-e RUNNER_ARTIFACT_DIR=/artifacts \
73
73
-e RUNNER_DOCS_DIR=/docs \
74
74
-e RUNNER_TEST_RESULTS_DIR=/test-results \
75
- --env-file="{ env_file } " \
75
+ --env-file="{ os . environ . get ( 'RUNNER_TEMP' , '' ) } /github_env_ { os . environ . get ( 'GITHUB_RUN_ID' , '' ) } " \
76
76
`# It is unknown why the container sees a different value for this.` \
77
77
-e GITHUB_STEP_SUMMARY \
78
78
{ ' ' .join ([ f'-e { v } ' for v in secrets_u_names ]) } \
@@ -87,9 +87,9 @@ def main():
87
87
{ os .environ .get ('GPU_FLAG' , '' ) } \
88
88
-v "{ os .environ .get ('GITHUB_WORKSPACE' , '' ) } /{ os .environ .get ('REPOSITORY' , '' ) } :/{ os .environ .get ('REPOSITORY' , 'work' ) } " \
89
89
-v "{ os .environ .get ('GITHUB_WORKSPACE' , '' ) } /test-infra:/test-infra" \
90
- -v "{ os .environ .get ('RUNNER_TEMP ' , '' ) } /artifacts :/artifacts" \
91
- -v "{ os .environ .get ('RUNNER_TEMP ' , '' ) } /docs :/docs" \
92
- -v "{ os .environ .get ('RUNNER_TEMP ' , '' ) } /test-results :/test-results" \
90
+ -v "{ os .environ .get ('RUNNER_ARTIFACT_DIR ' , '' ) } :/artifacts" \
91
+ -v "{ os .environ .get ('RUNNER_DOCS_DIR ' , '' ) } :/docs" \
92
+ -v "{ os .environ .get ('RUNNER_TEST_RESULTS_DIR ' , '' ) } :/test-results" \
93
93
-v "{ os .environ .get ('RUNNER_TEMP' , '' ) } /exec_script:/exec" \
94
94
-v "{ os .environ .get ('GITHUB_STEP_SUMMARY' , '' ) } ":"{ os .environ .get ('GITHUB_STEP_SUMMARY' , '' ) } " \
95
95
-w /{ os .environ .get ('REPOSITORY' , 'work' ) } \
0 commit comments