Removing the keep-alive ping check for CI builds (#565)
This commit is contained in:
parent
2677003962
commit
6e6eb25a5c
1
.github/workflows/client.yml
vendored
1
.github/workflows/client.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
1
.github/workflows/server.yml
vendored
1
.github/workflows/server.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
@ -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.
|
||||
Loading…
Reference in New Issue
Block a user