32
32
uses : docker/setup-buildx-action@v3
33
33
34
34
- name : Start containers
35
- run : docker- compose -f "compas/docker-compose-postgresql.yml" up -d --build
35
+ run : docker compose -f "compas/docker-compose-postgresql.yml" up -d --build
36
36
env :
37
- COMPAS_HOSTNAME : compas_reverse-proxy_1
37
+ COMPAS_HOSTNAME : compas-reverse-proxy-1
38
38
CONFIGURATION_LOCATION : /nginx.conf
39
39
40
40
- name : Wait until containers started
@@ -45,11 +45,11 @@ jobs:
45
45
- name : Execute integration tests (firefox)
46
46
# Using the Docker Image from ppodgorsek (https://github.com/ppodgorsek/docker-robot-framework)
47
47
# to run the Robot Framework Test Scripts.
48
- # To connect with the Docker Compose and use http://compas_reverse-proxy_1 / as URL we are
48
+ # To connect with the Docker Compose and use http://compas-reverse-proxy-1 / as URL we are
49
49
# connecting to the same network "compas_default" that's started bij Docker Compose.
50
50
run : |
51
51
docker run --rm -e BROWSER=firefox \
52
- -e ROBOT_OPTIONS="-v url:http://compas_reverse-proxy_1 /" \
52
+ -e ROBOT_OPTIONS="-v url:http://compas-reverse-proxy-1 /" \
53
53
-v $(pwd)/target/firefox:/opt/robotframework/reports:Z \
54
54
-v $(pwd)/integration-testing:/opt/robotframework/tests:Z \
55
55
--user $(id -u):$(id -g) \
@@ -61,11 +61,11 @@ jobs:
61
61
- name : Execute integration tests (chromium)
62
62
# Using the Docker Image from ppodgorsek (https://github.com/ppodgorsek/docker-robot-framework)
63
63
# to run the Robot Framework Test Scripts.
64
- # To connect with the Docker Compose and use http://compas_reverse-proxy_1 / as URL we are
64
+ # To connect with the Docker Compose and use http://compas-reverse-proxy-1 / as URL we are
65
65
# connecting to the same network "compas_default" that's started bij Docker Compose.
66
66
run : |
67
67
docker run --rm -e BROWSER=chromium \
68
- -e ROBOT_OPTIONS="-v url:http://compas_reverse-proxy_1 /" \
68
+ -e ROBOT_OPTIONS="-v url:http://compas-reverse-proxy-1 /" \
69
69
-v $(pwd)/target/firefox:/opt/robotframework/reports:Z \
70
70
-v $(pwd)/integration-testing:/opt/robotframework/tests:Z \
71
71
--user $(id -u):$(id -g) \
84
84
85
85
- name : Stop containers
86
86
if : always()
87
- run : docker- compose -f "compas/docker-compose-postgresql.yml" down -v
87
+ run : docker compose -f "compas/docker-compose-postgresql.yml" down -v
0 commit comments