Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

Commit

Permalink
Revert "Use common test build during CI (MetaMask#7196)" (MetaMask#7404)
Browse files Browse the repository at this point in the history
This reverts commit b0ec610, which was
introduced in MetaMask#7196. This change was preventing the sourcemaps from
being uploaded correctly.
  • Loading branch information
Gudahtt committed Nov 13, 2019
1 parent 9df268c commit 4b4c00e
Showing 1 changed file with 4 additions and 31 deletions.
35 changes: 4 additions & 31 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ workflows:
- prep-build:
requires:
- prep-deps
- prep-build-test:
requires:
- prep-deps
# - prep-docs:
# requires:
# - prep-deps
Expand All @@ -28,10 +25,10 @@ workflows:
- prep-deps
- test-e2e-chrome:
requires:
- prep-build-test
- prep-deps
- test-e2e-firefox:
requires:
- prep-build-test
- prep-deps
- test-unit:
requires:
- prep-deps
Expand Down Expand Up @@ -129,24 +126,6 @@ jobs:
- dist
- builds

prep-build-test:
docker:
- image: circleci/node:10.16-browsers
steps:
- checkout
- attach_workspace:
at: .
- run:
name: Build extension for testing
command: yarn build:test
- run:
name: Move test build to 'dist-test' to avoid conflict with production build
command: mv ./dist ./dist-test
- persist_to_workspace:
root: .
paths:
- dist-test

prep-docs:
docker:
- image: circleci/node:10.16-browsers
Expand Down Expand Up @@ -213,12 +192,9 @@ jobs:
- checkout
- attach_workspace:
at: .
- run:
name: Move test build to dist
command: mv ./dist-test ./dist
- run:
name: test:e2e:chrome
command: yarn test:e2e:chrome
command: yarn build:test && yarn test:e2e:chrome
no_output_timeout: 20m
- store_artifacts:
path: test-artifacts
Expand All @@ -234,12 +210,9 @@ jobs:
command: ./.circleci/scripts/firefox-install
- attach_workspace:
at: .
- run:
name: Move test build to dist
command: mv ./dist-test ./dist
- run:
name: test:e2e:firefox
command: yarn test:e2e:firefox
command: yarn build:test && yarn test:e2e:firefox
no_output_timeout: 20m
- store_artifacts:
path: test-artifacts
Expand Down

0 comments on commit 4b4c00e

Please sign in to comment.