Removing the keep-alive ping check for CI builds (#565)

This commit is contained in:
Arpit Mohan 2020-09-18 13:13:40 +05:30 committed by Shrikant Sharat Kandula
parent 2677003962
commit 6e6eb25a5c
4 changed files with 4 additions and 2 deletions

View File

@ -137,6 +137,7 @@ jobs:
--env APPSMITH_REDIS_URL=redis://localhost:6379 \
--env APPSMITH_ENCRYPTION_PASSWORD=password \
--env APPSMITH_ENCRYPTION_SALT=salt \
--env APPSMITH_IS_SELF_HOSTED=false \
appsmith/appsmith-server:release
- name: Installing Yarn serve

View File

@ -58,6 +58,7 @@ jobs:
APPSMITH_REDIS_URL: "redis://127.0.0.1:6379"
APPSMITH_ENCRYPTION_PASSWORD: "password"
APPSMITH_ENCRYPTION_SALT: "salt"
APPSMITH_IS_SELF_HOSTED: false
run: mvn -B package
# Here, the GITHUB_REF is of type /refs/head/<branch_name>. We extract branch_name from this by removing the

View File

@ -82,4 +82,4 @@ This section has moved here: https://facebook.github.io/create-react-app/docs/tr
### Cypress tests via Github Actions
The cypress tests run via Github actions pull the `release` Docker image of the server to run as a service locally. This is to ensure that we don't face any network flakiness during tests.
The cypress tests run via Github Actions. The Github Action pulls the `release` Docker image of the server to run as a service locally. This is to ensure that we don't face any network flakiness during tests.

View File

@ -30,4 +30,4 @@ In order to test the code, you can run the following command
mvn -B clean package
```
Please make sure that you have a local Redis instance running for the test cases. The MongoDB is run in-memory during tests so that shouldn't be a problem.
Please make sure that you have a local Redis instance running for the test cases. During tests, the MongoDB is run in-memory. So you don't require to be running a local MongoDB instance.