From fbdff14535dd2714d1f3cb73bb8f665ee8421fd5 Mon Sep 17 00:00:00 2001 From: filip mertens Date: Tue, 20 Sep 2022 16:48:11 +0200 Subject: [PATCH] plugins --- .circleci/config.yml | 1 - apps/remix-ide/ci/browser_tests_etherscan_plugin.sh | 1 + apps/remix-ide/ci/browser_tests_vyper_plugin.sh | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 75c4707bb9..d44c297e0d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -144,7 +144,6 @@ jobs: keys: - v1-deps-{{ checksum "yarn.lock" }} - run: yarn - - run: npx nx build vyper - run: name: Start Selenium command: java -jar /usr/local/bin/selenium.jar diff --git a/apps/remix-ide/ci/browser_tests_etherscan_plugin.sh b/apps/remix-ide/ci/browser_tests_etherscan_plugin.sh index fdb420fc69..abcf86a45a 100755 --- a/apps/remix-ide/ci/browser_tests_etherscan_plugin.sh +++ b/apps/remix-ide/ci/browser_tests_etherscan_plugin.sh @@ -6,6 +6,7 @@ BUILD_ID=${CIRCLE_BUILD_NUM:-${TRAVIS_JOB_NUMBER}} echo "$BUILD_ID" TEST_EXITCODE=0 +npx nx build etherscan yarn run serve:production & npx nx serve etherscan & diff --git a/apps/remix-ide/ci/browser_tests_vyper_plugin.sh b/apps/remix-ide/ci/browser_tests_vyper_plugin.sh index 4c82c9f768..c417b4b2d5 100755 --- a/apps/remix-ide/ci/browser_tests_vyper_plugin.sh +++ b/apps/remix-ide/ci/browser_tests_vyper_plugin.sh @@ -6,6 +6,7 @@ BUILD_ID=${CIRCLE_BUILD_NUM:-${TRAVIS_JOB_NUMBER}} echo "$BUILD_ID" TEST_EXITCODE=0 +nx build vyper yarn run serve:production & npx nx serve vyper &