ci: Download oldstack from private repo instead of S3 in ci-test.yml (#20802)
## Description - Updated ci-test.yml to pull the old stack from a private repo instead of S3 ## Type of change - ci-test.yml ## How Has This Been Tested? - Cypress ## Checklist: ### QA activity: - [ ] Test plan has been approved by relevant developers - [ ] Test plan has been peer reviewed by QA - [ ] Cypress test cases have been added and approved by either SDET or manual QA - [ ] Organized project review call with relevant stakeholders after Round 1/2 of QA - [ ] Added Test Plan Approved label after reveiwing all Cypress test
This commit is contained in:
parent
f846122a37
commit
011e7b196d
17
.github/workflows/ci-test.yml
vendored
17
.github/workflows/ci-test.yml
vendored
|
|
@ -166,18 +166,15 @@ jobs:
|
|||
working-directory: "."
|
||||
run: |
|
||||
mkdir -p cicontainerlocal/stacks/configuration/
|
||||
mkdir -p cicontainerlocal/oldstack
|
||||
|
||||
- name: Download S3 image
|
||||
uses: keithweaver/aws-s3-github-action@v1.0.0
|
||||
#Download the oldstacks from appsmithorg/oldstacks repo
|
||||
- name: Download the oldstack
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
command: cp
|
||||
source: s3://ci-assets--appsmith/
|
||||
destination: /home/runner/work/appsmith/appsmith/cicontainerlocal/oldstack
|
||||
aws_access_key_id: ${{ secrets.S3_CI_ASSETS_ACCESS_KEY_ID }}
|
||||
aws_secret_access_key: ${{ secrets.S3_CI_ASSETS_SECRET_ACCESS_KEY }}
|
||||
aws_region: ap-south-1
|
||||
flags: --recursive
|
||||
repository: appsmithorg/ci-oldstack
|
||||
token: ${{ secrets.CYPRESS_GITHUB_PERSONAL_ACCESS_TOKEN }}
|
||||
submodules: 'recursive'
|
||||
path: cicontainerlocal/oldstack
|
||||
|
||||
- name: Load docker image
|
||||
if: steps.run_result.outputs.run_result != 'success'
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import { ObjectsRegistry } from "../../../support/Objects/Registry";
|
|||
let agHelper = ObjectsRegistry.AggregateHelper;
|
||||
const tedUrl = "http://localhost:5001/v1/parent/cmd";
|
||||
|
||||
describe("Upgrade appsmith version", () => {
|
||||
describe.skip("Upgrade appsmith version", () => {
|
||||
it("Upgrade Appsmith version and verify the Applications", () => {
|
||||
const uuid = () => Cypress._.random(0, 10000);
|
||||
const name = uuid();
|
||||
Loading…
Reference in New Issue
Block a user