File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
github-actions/setup-e2e-environment Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,36 @@ runs:
145145 --wildcards 'jore4-docker-compose-bundle-main/docker-compose/*'
146146 shell : bash
147147
148+ - name : Pull Docker images for databases, Hasura and Tiamat
149+ run : |
150+ time docker \
151+ compose \
152+ -f ${{ github.workspace }}/docker/docker-compose.yml \
153+ ${{ inputs.custom_docker_compose != '' && format('-f {0}', inputs.custom_docker_compose) || '' }} \
154+ ${{ inputs.start_jore3_importer == 'true' && '--profile importer' || '' }} \
155+ pull jore4-mapmatchingdb jore4-testdb jore4-hasura jore4-tiamat
156+ shell : bash
157+
158+ - name : Start databases, Hasura and Tiamat
159+ run : |
160+ docker \
161+ compose \
162+ -f ${{ github.workspace }}/docker/docker-compose.yml \
163+ ${{ inputs.custom_docker_compose != '' && format('-f {0}', inputs.custom_docker_compose) || '' }} \
164+ ${{ inputs.start_jore3_importer == 'true' && '--profile importer' || '' }} \
165+ up -d jore4-mapmatchingdb jore4-testdb jore4-hasura jore4-tiamat
166+ shell : bash
167+
168+ - name : Pull Docker images
169+ run : |
170+ time docker \
171+ compose \
172+ -f ${{ github.workspace }}/docker/docker-compose.yml \
173+ ${{ inputs.custom_docker_compose != '' && format('-f {0}', inputs.custom_docker_compose) || '' }} \
174+ ${{ inputs.start_jore3_importer == 'true' && '--profile importer' || '' }} \
175+ pull
176+ shell : bash
177+
148178 - name : Start e2e environment
149179 run : |
150180 docker \
You can’t perform that action at this time.
0 commit comments