I am using a ssh
remote with the following setup:
remotes:
azure-deeplearning:
type: ssh
host: deeplearning.guild.ai
venv-path: mypath/.training_venv
user: myuser
use-prerelease: yes
The venv
gets correctly activated. The issue is that I need to source a setup file after the venv
gets activated. If I were to do it manually on the remote I would do:
source mypath/.training-venv/bin/activate
source my_custom_bash.sh
How would this fit into the guild remote workflow?