Interpret circle.yml file in SSH session

Hello,

I would like to be able to interpret the circle.yml file when using a SSH session. In this file, I have around 50± environment variables that needs to be exported to my current session, unfortunately the file is not automatically “loaded”

Is there any way to do it ?

Thanks

I finally found a workaround, which is to SSH to the node, not on the first host.

SSH + Node documentation https://circleci.com/docs/ssh-between-build-containers/

When using ssh node0 for example, the sessionwill have all the environment variable loaded.

It’s still not a proper answer to the question, but at least I’m not stuck anymore.