Skip to content

Commit afe87fc

Browse files
author
Janne Rönkkö
committed
DEV: Pull and start databases, tiamat and hasura first
1 parent 4dcb387 commit afe87fc

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/shared-run-e2e.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,17 @@ jobs:
211211
--wildcards 'jore4-docker-compose-bundle-main/docker-compose/*'
212212
shell: bash
213213

214-
- name: Start e2e environment
214+
- name: Pull First Docker Images
215+
run: |
216+
docker compose -f ${{ github.workspace }}/docker/docker-compose.yml ${{ inputs.custom_docker_compose != '' && format('-f {0}', inputs.custom_docker_compose) || '' }} ${{ inputs.start_jore3_importer == 'true' && '--profile importer' || '' }} pull jore4-mapmatchingdb jore4-testdb jore4-hasura jore4-tiamat
217+
shell: bash
218+
219+
- name: Start E2E First Services
220+
run: |
221+
docker compose -f ${{ github.workspace }}/docker/docker-compose.yml ${{ inputs.custom_docker_compose != '' && format('-f {0}', inputs.custom_docker_compose) || '' }} ${{ inputs.start_jore3_importer == 'true' && '--profile importer' || '' }} up -d jore4-mapmatchingdb jore4-testdb jore4-hasura jore4-tiamat
222+
shell: bash
223+
224+
- name: Pull Docker Images
215225
run: |
216226
docker compose -f ${{ github.workspace }}/docker/docker-compose.yml ${{ inputs.custom_docker_compose != '' && format('-f {0}', inputs.custom_docker_compose) || '' }} ${{ inputs.start_jore3_importer == 'true' && '--profile importer' || '' }} pull
217227
shell: bash

0 commit comments

Comments
 (0)