mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #3755 from MetaMask/revert-3730-revert-3665-ci-build
Restore "Ci - introduce a build job"
This commit is contained in:
commit
cd3e092c14
@ -6,6 +6,9 @@ workflows:
|
|||||||
jobs:
|
jobs:
|
||||||
- prep-deps-npm
|
- prep-deps-npm
|
||||||
- prep-deps-firefox
|
- prep-deps-firefox
|
||||||
|
- prep-build:
|
||||||
|
requires:
|
||||||
|
- prep-deps-npm
|
||||||
- prep-scss:
|
- prep-scss:
|
||||||
requires:
|
requires:
|
||||||
- prep-deps-npm
|
- prep-deps-npm
|
||||||
@ -14,6 +17,7 @@ workflows:
|
|||||||
- prep-deps-npm
|
- prep-deps-npm
|
||||||
- test-e2e:
|
- test-e2e:
|
||||||
requires:
|
requires:
|
||||||
|
- prep-build
|
||||||
- prep-deps-npm
|
- prep-deps-npm
|
||||||
- test-unit:
|
- test-unit:
|
||||||
requires:
|
requires:
|
||||||
@ -36,6 +40,15 @@ workflows:
|
|||||||
- prep-deps-npm
|
- prep-deps-npm
|
||||||
- prep-deps-firefox
|
- prep-deps-firefox
|
||||||
- prep-scss
|
- prep-scss
|
||||||
|
- all-tests-pass:
|
||||||
|
requires:
|
||||||
|
- test-lint
|
||||||
|
- test-unit
|
||||||
|
- test-e2e
|
||||||
|
- test-integration-mascara-chrome
|
||||||
|
- test-integration-mascara-firefox
|
||||||
|
- test-integration-flat-chrome
|
||||||
|
- test-integration-flat-firefox
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
prep-deps-npm:
|
prep-deps-npm:
|
||||||
@ -68,6 +81,23 @@ jobs:
|
|||||||
paths:
|
paths:
|
||||||
- firefox
|
- firefox
|
||||||
|
|
||||||
|
prep-build:
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:8-browsers
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- restore_cache:
|
||||||
|
key: dependency-cache-{{ checksum "package-lock.json" }}
|
||||||
|
- run:
|
||||||
|
name: build:dist
|
||||||
|
command: npm run dist
|
||||||
|
- run:
|
||||||
|
name: build:debug
|
||||||
|
command: find dist/ -type f -exec md5sum {} \; | sort -k 2
|
||||||
|
- save_cache:
|
||||||
|
key: build-cache-{{ .Revision }}
|
||||||
|
paths:
|
||||||
|
- dist
|
||||||
|
|
||||||
prep-scss:
|
prep-scss:
|
||||||
docker:
|
docker:
|
||||||
@ -106,9 +136,8 @@ jobs:
|
|||||||
- checkout
|
- checkout
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
key: dependency-cache-{{ checksum "package-lock.json" }}
|
key: dependency-cache-{{ checksum "package-lock.json" }}
|
||||||
- run:
|
- restore_cache:
|
||||||
name: Build
|
key: build-cache-{{ .Revision }}
|
||||||
command: npm run dist
|
|
||||||
- run:
|
- run:
|
||||||
name: Test
|
name: Test
|
||||||
command: npm run test:e2e
|
command: npm run test:e2e
|
||||||
@ -217,3 +246,11 @@ jobs:
|
|||||||
- run:
|
- run:
|
||||||
name: test:integration:mascara
|
name: test:integration:mascara
|
||||||
command: npm run test:mascara
|
command: npm run test:mascara
|
||||||
|
|
||||||
|
all-tests-pass:
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:8-browsers
|
||||||
|
steps:
|
||||||
|
- run:
|
||||||
|
name: All Tests Passed
|
||||||
|
command: echo 'weew - everything passed!'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user