File tree Expand file tree Collapse file tree 5 files changed +19
-5
lines changed
Expand file tree Collapse file tree 5 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010 timeout-minutes : 5
1111 env :
12- DOCKER_COMPOSE : docker compose -f docker-compose.yml
12+ DOCKER_COMPOSE : docker compose --profile smoketest - f docker-compose.yml
1313 steps :
1414 - name : Checkout
1515 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ # Use docker compose to start the environment but with the modified override file(s)
4+ echo -e " Starting the dev environment with the following command:\n"
5+
6+ echo -e " docker compose --profile oidc -f docker-compose.yml down\n"
7+ docker compose --profile oidc -f docker-compose.yml down
Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ services:
4444 volumes :
4545 - ${PWD}/:/config
4646 - /var/run/docker.sock:/var/run/docker.sock
47+ profiles :
48+ - " smoketest"
4749
4850 webauthn :
4951 image : ghcr.io/openconext/stepup-webauthn/stepup-webauthn:${STEPUP_VERSION:-prod}
Original file line number Diff line number Diff line change 7777# Use docker compose to start the environment but with the modified override file(s)
7878echo -e " Starting the ${MODE} environment with the following command:\n"
7979
80- echo -e " docker compose -f docker-compose.yml ${docker_compose_args[@]} ${extra_compose_args} up ${d_option} ${@: $number_of_dev_envs } \n"
81- docker compose -f docker-compose.yml ${docker_compose_args[@]} ${extra_compose_args} up ${d_option} ${@: $number_of_dev_envs }
82-
83-
80+ echo -e " docker compose --profile smoketest -f docker-compose.yml ${docker_compose_args[@]} ${extra_compose_args} up ${d_option} ${@: $number_of_dev_envs } \n"
81+ docker compose --profile smoketest -f docker-compose.yml ${docker_compose_args[@]} ${extra_compose_args} up ${d_option} ${@: $number_of_dev_envs }
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ # Use docker compose to start the environment but with the modified override file(s)
4+ echo -e " Starting the dev environment with the following command:\n"
5+
6+ echo -e " docker compose --profile smoketest -f docker-compose.yml down\n"
7+ docker compose --profile smoketest -f docker-compose.yml down
You can’t perform that action at this time.
0 commit comments