diff --git a/.circleci/config.yml b/.circleci/config.yml index b77ea13f05..e5f2985f6e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -76,43 +76,6 @@ jobs: - run: node dist/libs/remix-tests/bin/remix-tests ./libs/remix-tests/tests/examples_0/assert_ok_test.sol - run: yarn run test:libs - remixd: - docker: - - image: cimg/node:14.17.6-browsers - resource_class: - xlarge - working_directory: ~/remix-project - steps: - - browser-tools/install-browser-tools - - run: - command: | - google-chrome --version - firefox --version - geckodriver --version - chromedriver --version - rm LICENSE.chromedriver 2> /dev/null - - checkout - - attach_workspace: - at: . - - run: unzip ./persist/dist.zip - - - restore_cache: - keys: - - v1-deps-{{ checksum "yarn.lock" }} - - run: yarn - - run: yarn run downloadsolc_assets_e2e && yarn run downloadsolc_assets_dist - - run: ls -la ./dist/apps/remix-ide/assets/js - - run: yarn run selenium-install || yarn run selenium-install - - run: - name: Start Selenium - command: yarn run selenium - background: true - - run: ./apps/remix-ide/ci/remixd_test.zsh - - store_test_results: - path: ./reports/tests - - store_artifacts: - path: ./reports/screenshots - remix-ide-browser: docker: - image: cimg/node:14.17.6-browsers @@ -310,9 +273,6 @@ workflows: matrix: parameters: script: ["browser_tests_plugin_api.sh", "browser_tests_etherscan_plugin.sh", "browser_tests_vyper_plugin.sh"] - - remixd: - requires: - - build - remix-ide-browser: requires: - build diff --git a/apps/remix-ide/ci/remixd_test.zsh b/apps/remix-ide/ci/remixd_test.zsh deleted file mode 100755 index c50c7e7865..0000000000 --- a/apps/remix-ide/ci/remixd_test.zsh +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env bash - -set -e - -BUILD_ID=${CIRCLE_BUILD_NUM:-${TRAVIS_JOB_NUMBER}} -echo "$BUILD_ID" -TEST_EXITCODE=0 - -git config --global user.email "you@example.com" -git config --global user.name "Your Name" - -cd .. -echo $SHELL -ls -la . -pwd -# install foundry -curl -L https://foundry.paradigm.xyz | bash || true -# export /home/circleci/.foundry/bin to PATH -export PATH=$PATH:/home/circleci/.foundry/bin -foundryup -mkdir foundry -cd foundry -ls -la . -forge init hello_foundry -ls -la hello_foundry -cd .. - -# install truffle with yarn -yarn global add truffle -# install truffle metacoin box -mkdir MetaCoin -cd MetaCoin -truffle unbox metacoin -cd .. - -# install hardhat -yarn global add hardhat - - -sleep 5 - -cd remix-project -yarn run build:e2e - -echo "$TEST_EXITCODE" -if [ "$TEST_EXITCODE" -eq 1 ] -then - exit 1 -fi