Skip to content

Commit

Permalink
ci: include foundry profile as default
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Mucha <jakub.mucha@icloud.com>
  • Loading branch information
drptbl committed Oct 31, 2022
1 parent c4e547c commit 868dfe2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/audit_and_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
- name: Run e2e tests (low res)
run: |
docker-compose -f docker-compose.ci.yml --env-file low-res.env up --build --exit-code-from synpress
docker-compose -f docker-compose.ci.yml --env-file low-res.env --profile foundry up --build --exit-code-from synpress
env:
COMPOSE_DOCKER_CLI_BUILD: 1
DOCKER_BUILDKIT: 1
Expand All @@ -143,7 +143,7 @@ jobs:

- name: Run e2e tests (high res)
run: |
docker-compose -f docker-compose.ci.yml --env-file high-res.env up --build --exit-code-from synpress
docker-compose -f docker-compose.ci.yml --env-file high-res.env --profile foundry up --build --exit-code-from synpress
env:
COMPOSE_DOCKER_CLI_BUILD: 1
DOCKER_BUILDKIT: 1
Expand Down
4 changes: 2 additions & 2 deletions start-tests-ci.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
docker-compose -f docker-compose.ci.yml --build --exit-code-from synpress
docker-compose -f docker-compose.ci.yml --profile foundry up --build --exit-code-from synpress
# warning: it's not safe to use ngrok if you have secrets set as environmental variables
# (someone could connect to your CI and steal your vars)
# docker-compose -f docker-compose.ci.yml --profile ngrok up --build --exit-code-from synpress
# docker-compose -f docker-compose.ci.yml --profile foundry --profile ngrok up --build --exit-code-from synpress
2 changes: 1 addition & 1 deletion start-tests.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
docker-compose up --build --exit-code-from synpress
docker-compose --profile foundry up --build --exit-code-from synpress

0 comments on commit 868dfe2

Please sign in to comment.