I created a the following workflow with 3 jobs:
workflows:
version: 2
build-and-test:
jobs:
- rails_server_1
- rails_server_2
- tests
For the jobs rails_server_X I’m running instances of the servers. Basically running rails server. That will run one instance at localhost:3000 and the other at localhost:3001
I’d like to use the third job tests to run some tests hitting the two running instances.
But when I try to find those instances running I’m not able to find them.
I guess jobs don’t share network. I read about workspaces to persist data. Is there any workaround sharing network as well?