Hi,
I am trying my luck with documentation and best guesses since a few hours now. Maybe someone can help me out:
I would like to start Camunda-platform run as a service in a GitHub job. But somehow, I cannot connect inside that job to the service:
jobs:
integrationtest:
runs-on: ubuntu-latest
services:
camunda:
image: camunda/camunda-bpm-platform:run-7.14.0
ports:
- 8080:8080
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
- name: Test with robot
run: |
pip install .
robot -d logs -b debug.log -v CAMUNDA_HOST:http://localhost:8080 tests/robot/**/*.robot
I get a Connection refused
error when calling localhost:8080/engine-rest
.
Do I need to wait until camunda is up? Or am I doing something wrong with GitHub actions?
Regards,
Markus