From 910843bde06b01752b4d4dbe356583c138d45b6b Mon Sep 17 00:00:00 2001 From: Ely Lucas Date: Wed, 12 Jul 2023 20:47:47 -0600 Subject: [PATCH] moving install curl to only linux --- .circleci/config.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 74ff11e47..a4ac60974 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,6 @@ commands: - store_artifacts: path: coverage - run: npx nyc report --reporter=text || true - - run: apt-get update && apt-get install -y curl - codecov/upload: file: coverage/coverage-final.json persist_ws: @@ -39,7 +38,11 @@ commands: steps: - attach_workspace: at: ~/ - + setup_linux: + steps: + - run: + name: Install curl + command: apt-get update && apt-get install -y curl # Setup Windows # 1. Add nvm and install node 18.16.0 # 2. Install yarn @@ -132,6 +135,7 @@ jobs: setup_project_and_cypress_linux: executor: with-chrome-and-firefox steps: + - setup_linux - setup_project_and_cypress setup_project_and_cypress_windows: executor: