From 777b3630bca6757dc7812108067f2732825ab6f1 Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Thu, 18 Nov 2021 15:10:44 +0100 Subject: [PATCH] run deploy is now normal test --- .circleci/config.yml | 43 ------------------- .../{runAndDeploy.ts => runAndDeploy.test.ts} | 0 2 files changed, 43 deletions(-) rename apps/remix-ide-e2e/src/tests/{runAndDeploy.ts => runAndDeploy.test.ts} (100%) diff --git a/.circleci/config.yml b/.circleci/config.yml index a62c0c2553..2e6034c0cd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -164,43 +164,6 @@ jobs: - store_artifacts: path: ./reports/screenshots - remix-ide-run-deploy: - docker: - # specify the version you desire here - - image: cimg/node:14.17.6-browsers - - # Specify service dependencies here if necessary - # CircleCI maintains a library of pre-built images - # documented at https://circleci.com/docs/2.0/circleci-images/ - resource_class: xlarge - # - image: circleci/mongo:3.4.4 - environment: - - COMMIT_AUTHOR_EMAIL: "yann@ethereum.org" - - COMMIT_AUTHOR: "Circle CI" - - FILES_TO_PACKAGE: "dist/apps/remix-ide/assets dist/apps/remix-ide/index.html dist/apps/remix-ide/main.js dist/apps/remix-ide/polyfills.js dist/apps/remix-ide/runtime.js dist/apps/remix-ide/vendor.js dist/apps/remix-ide/favicon.ico" - working_directory: ~/remix-project - - steps: - - browser-tools/install-chrome - - browser-tools/install-chromedriver - - checkout - - attach_workspace: - at: . - - run: unzip ./persist/dist.zip - - restore_cache: - keys: - - v1-deps-{{ checksum "package-lock.json" }} - - run: npm run selenium-install - - run: - name: Start Selenium - command: npx selenium-standalone start - background: true - - run: ./apps/remix-ide/ci/browser_tests_run_deploy.sh - - store_test_results: - path: ./reports/tests - - store_artifacts: - path: ./reports/screenshots - remix-ide-plugin-api: docker: # specify the version you desire here @@ -371,9 +334,6 @@ workflows: - remix-ide-firefox: requires: - build - - remix-ide-run-deploy: - requires: - - build - publish: requires: - build @@ -383,7 +343,6 @@ workflows: - remix-libs - remix-ide-chrome - remix-ide-firefox - - remix-ide-run-deploy - remix-ide-plugin-api filters: branches: @@ -394,7 +353,6 @@ workflows: - remix-libs - remix-ide-chrome - remix-ide-firefox - - remix-ide-run-deploy - remix-ide-plugin-api filters: branches: @@ -405,7 +363,6 @@ workflows: - remix-libs - remix-ide-chrome - remix-ide-firefox - - remix-ide-run-deploy - remix-ide-plugin-api filters: branches: diff --git a/apps/remix-ide-e2e/src/tests/runAndDeploy.ts b/apps/remix-ide-e2e/src/tests/runAndDeploy.test.ts similarity index 100% rename from apps/remix-ide-e2e/src/tests/runAndDeploy.ts rename to apps/remix-ide-e2e/src/tests/runAndDeploy.test.ts