Skip to content

Commit

Permalink
moving install curl to only linux
Browse files Browse the repository at this point in the history
  • Loading branch information
elylucas committed Jul 13, 2023
1 parent c76a054 commit 910843b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 910843b

Please sign in to comment.