-
-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: include foundry profile as default
Signed-off-by: Jakub Mucha <jakub.mucha@icloud.com>
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |