Skip to content

Commit

Permalink
ci: Release v1.9.3 (#19545)
Browse files Browse the repository at this point in the history
this PR is for Release v1.9.3
  • Loading branch information
mohanarpit committed Jan 9, 2023
2 parents cb0276a + 01c6ef1 commit 56f4e8e
Show file tree
Hide file tree
Showing 407 changed files with 7,164 additions and 3,509 deletions.
2 changes: 1 addition & 1 deletion .github/config.json

Large diffs are not rendered by default.

14 changes: 8 additions & 6 deletions .github/workflows/fat-migration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,11 +218,12 @@ jobs:
run: echo "I'm alive!" && exit 0

# Setup Java
- name: Set up JDK 1.11
- name: Set up JDK 17
if: steps.run_result.outputs.run_result != 'success'
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: "11.0.10"
distribution: 'temurin'
java-version: '17'

# Retrieve maven dependencies from cache. After a successful run, these dependencies are cached again
- name: Cache maven dependencies
Expand Down Expand Up @@ -485,11 +486,12 @@ jobs:
run: echo ${{ steps.run_result.outputs.run_result }}

# Setup Java
- name: Set up JDK 1.11
- name: Set up JDK 17
if: steps.run_result.outputs.run_result != 'success'
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: "11.0.10"
distribution: 'temurin'
java-version: '17'

- name: Download the react build artifact
uses: actions/download-artifact@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ jobs:
with:
fetch-depth: 0

- name: Set up JDK 1.11
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: "11.0.10"
distribution: adopt
distribution: 'temurin'
java-version: '17'

# Retrieve maven dependencies from cache. After a successful run, these dependencies are cached again
- name: Cache maven dependencies
Expand Down
14 changes: 11 additions & 3 deletions .github/workflows/integration-tests-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,12 @@ jobs:
run: echo ${{ steps.run_result.outputs.run_result }}

# Setup Java
- name: Set up JDK 1.11
- name: Set up JDK 17
if: steps.run_result.outputs.run_result != 'success'
uses: actions/setup-java@v3
with:
java-version: "11.0.10"
distribution: adopt
distribution: 'temurin'
java-version: '17'

- name: Download the client build artifact
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -226,6 +226,7 @@ jobs:
-v "$PWD/stacks:/appsmith-stacks" -e APPSMITH_LICENSE_KEY=$APPSMITH_LICENSE_KEY \
-e APPSMITH_AUDITLOG_ENABLED=true \
-e APPSMITH_CLOUD_SERVICES_BASE_URL=http://host.docker.internal:5001 \
--add-host=host.docker.internal:host-gateway \
fatcontainer
- name: Use Node.js 16.14.0
Expand Down Expand Up @@ -585,6 +586,13 @@ jobs:
if: steps.run_result.outputs.run_result != 'success'
run: yarn install --frozen-lockfile

# Setup Java
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'

- name: Download the react build artifact
if: steps.run_result.outputs.run_result != 'success'
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ jobs:
- uses: docker://agilepathway/pull-request-label-checker:latest
with:
# Needs to have a Test Plan Approved label if not part of any of the pods below
any_of: Test Plan Approved,App Viewers Pod,User Education Pod,New Developers Pod,Team Managers Pod,UI Builders Pod,Performance,Release Promotion,CI,Design System Pod,DevOps Pod,skip-testPlan
any_of: Test Plan Approved,User Education Pod,DevOps Pod,Performance,CI,Release Promotion,skip-testPlan
repo_token: ${{ secrets.GITHUB_TOKEN }}
8 changes: 8 additions & 0 deletions .github/workflows/perf-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,14 @@ jobs:
if: steps.run_result.outputs.run_result != 'success'
run: yarn install --frozen-lockfile

# Setup Java
- name: Set up JDK 17
if: steps.run_result.outputs.run_result != 'success'
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'

- name: Download the react build artifact
if: steps.run_result.outputs.run_result != 'success'
uses: actions/download-artifact@v3
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/server-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ jobs:
run: echo "I'm alive!" && exit 0

# Setup Java
- name: Set up JDK 1.11
- name: Set up JDK 17
if: steps.run_result.outputs.run_result != 'success'
uses: actions/setup-java@v3
with:
java-version: "11.0.10"
distribution: adopt
distribution: 'temurin'
java-version: '17'

# Retrieve maven dependencies from cache. After a successful run, these dependencies are cached again
- name: Cache maven dependencies
Expand Down Expand Up @@ -125,6 +125,7 @@ jobs:
- name: Build and test
if: steps.run_result.outputs.run_result != 'success'
env:
ACTIVE_PROFILE: test
APPSMITH_MONGODB_URI: "mongodb://localhost:27017/mobtools"
APPSMITH_CLOUD_SERVICES_BASE_URL: "https://release-cs.appsmith.com"
APPSMITH_REDIS_URL: "redis://127.0.0.1:6379"
Expand Down
Loading

0 comments on commit 56f4e8e

Please sign in to comment.