From 8f3d1c0380fb545f348211e4cc768307997f956b Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Sat, 13 Apr 2024 11:50:20 +0200 Subject: [PATCH] mv scripts --- .circleci/config.yml | 10 ++++------ chrome.sh | 5 ++--- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b0a3708f69..6d91784124 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -360,6 +360,10 @@ jobs: - checkout - attach_workspace: at: . + - run: unzip ./persist/dist.zip + - run: yarn install --cwd ./apps/remix-ide-e2e --modules-folder ../../node_modules + - run: mkdir node_modules/hardhat && wget https://unpkg.com/hardhat/console.sol -O node_modules/hardhat/console.sol + - run: ls -la ./dist/apps/remix-ide/assets/js - when: condition: equal: [ "chrome", << parameters.browser >> ] @@ -382,12 +386,6 @@ jobs: install-chromedriver: false - run: sh ./chrome.sh - run: firefox --version - - - - run: unzip ./persist/dist.zip - - run: yarn install --cwd ./apps/remix-ide-e2e --modules-folder ../../node_modules - - run: mkdir node_modules/hardhat && wget https://unpkg.com/hardhat/console.sol -O node_modules/hardhat/console.sol - - run: ls -la ./dist/apps/remix-ide/assets/js - run: ./apps/remix-ide/ci/<< parameters.script >> << parameters.browser >> << parameters.jobsize >> << parameters.job >> - store_test_results: path: ./reports/tests diff --git a/chrome.sh b/chrome.sh index cbb1c91e12..d3483e5cad 100644 --- a/chrome.sh +++ b/chrome.sh @@ -1,6 +1,5 @@ google-chrome --version > version.txt VERSION=$(grep -Eo '[0-9]+\.' < version.txt | head -1 | cut -d'.' -f1) echo "CHROME DRIVER INSTALL $VERSION" - yarn add -D chromedriver@$VERSION - rm version.txt - yarn add -D geckodriver \ No newline at end of file + yarn add -D chromedriver@$VERSION geckodriver + rm version.txt \ No newline at end of file