ci:update env variable (#18557)
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
This commit is contained in:
parent
6ea8e2549f
commit
e0fe306503
12
.github/workflows/integration-tests-command.yml
vendored
12
.github/workflows/integration-tests-command.yml
vendored
|
|
@ -573,15 +573,9 @@ jobs:
|
||||||
if: steps.run_result.outputs.run_result != 'success'
|
if: steps.run_result.outputs.run_result != 'success'
|
||||||
working-directory: app/server
|
working-directory: app/server
|
||||||
env:
|
env:
|
||||||
APPSMITH_MONGODB_URI: "mongodb://localhost:27017/mobtools"
|
|
||||||
APPSMITH_REDIS_URL: "redis://127.0.0.1:6379"
|
|
||||||
APPSMITH_ENCRYPTION_PASSWORD: "password"
|
|
||||||
APPSMITH_ENCRYPTION_SALT: "salt"
|
|
||||||
APPSMITH_IS_SELF_HOSTED: false
|
|
||||||
APPSMITH_CLOUD_SERVICES_BASE_URL: https://release-cs.appsmith.com
|
|
||||||
APPSMITH_CLOUD_SERVICES_USERNAME: ""
|
|
||||||
APPSMITH_CLOUD_SERVICES_PASSWORD: ""
|
|
||||||
APPSMITH_GIT_ROOT: "./container-volumes/git-storage"
|
APPSMITH_GIT_ROOT: "./container-volumes/git-storage"
|
||||||
|
APPSMITH_LICENSE_KEY: ${{ secrets.APPSMITH_LICENSE_KEY }}
|
||||||
|
APPSMITH_ENVFILE_PATH: "${{ github.workspace }}/app/server/envs/cypress.env"
|
||||||
APPSMITH_AUDITLOG_ENABLED: true
|
APPSMITH_AUDITLOG_ENABLED: true
|
||||||
run: |
|
run: |
|
||||||
ls -l
|
ls -l
|
||||||
|
|
@ -616,7 +610,7 @@ jobs:
|
||||||
if: steps.run_result.outputs.run_result != 'success'
|
if: steps.run_result.outputs.run_result != 'success'
|
||||||
working-directory: ./app/rts
|
working-directory: ./app/rts
|
||||||
run: |
|
run: |
|
||||||
cp .env.example .env
|
cp app/server/envs/cypress.env .env
|
||||||
./start-server.sh &
|
./start-server.sh &
|
||||||
|
|
||||||
- name: Setting up the cypress tests
|
- name: Setting up the cypress tests
|
||||||
|
|
|
||||||
16
app/server/envs/cypress.env
Normal file
16
app/server/envs/cypress.env
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
APPSMITH_ENCRYPTION_PASSWORD="abcd"
|
||||||
|
APPSMITH_ENCRYPTION_SALT="abcd"
|
||||||
|
|
||||||
|
#APPSMITH_RECAPTCHA_SITE_KEY=""
|
||||||
|
#APPSMITH_RECAPTCHA_SECRET_KEY=""
|
||||||
|
|
||||||
|
APPSMITH_MONGODB_URI: "mongodb://localhost:27017/mobtools"
|
||||||
|
APPSMITH_REDIS_URL: "redis://127.0.0.1:6379"
|
||||||
|
APPSMITH_ENCRYPTION_PASSWORD: "password"
|
||||||
|
APPSMITH_ENCRYPTION_SALT: "salt"
|
||||||
|
APPSMITH_IS_SELF_HOSTED: false
|
||||||
|
APPSMITH_CLOUD_SERVICES_BASE_URL: https://release-cs.appsmith.com
|
||||||
|
APPSMITH_CLOUD_SERVICES_USERNAME: ""
|
||||||
|
APPSMITH_CLOUD_SERVICES_PASSWORD: ""
|
||||||
Loading…
Reference in New Issue
Block a user