I have multiple jobs using different executors sequentially.
I want to save value from a earlier job and reuse it in a later job
I tried persist_to_workspace, but it seems not working with different executors
I have multiple jobs using different executors sequentially.
I want to save value from a earlier job and reuse it in a later job
I tried persist_to_workspace, but it seems not working with different executors
What are you using to store the values? You should be able to save everything to a text file and pass it through a workspace without issues. could you share any error messages that you’re receiving, or possibly DM me a job link?
I saved value to a text file by running
echo "SOME_VALUE" > workspace/MY_VALUE
and then persist_to_workspace
I think the problem is I save the value in node_executor
and want to load it in macos
Any idea I could share value across different executors?
Oh, I just found out it is my fault with wrong syntax
It is working
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.