1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/.circleci/config.yml

357 lines
8.6 KiB
YAML
Raw Normal View History

2018-03-09 21:47:01 +01:00
version: 2
workflows:
version: 2
full_test:
2018-03-09 21:47:01 +01:00
jobs:
- prep-deps-npm
2018-03-27 23:16:58 +02:00
- prep-build:
requires:
- prep-deps-npm
2018-05-18 20:50:46 +02:00
- prep-docs:
requires:
- prep-deps-npm
2018-03-09 22:41:18 +01:00
- prep-scss:
2018-03-09 22:43:18 +01:00
requires:
- prep-deps-npm
- test-lint:
2018-03-09 21:47:01 +01:00
requires:
- prep-deps-npm
2019-02-20 18:41:34 +01:00
# - test-deps:
# requires:
# - prep-deps-npm
2018-05-28 18:22:48 +02:00
- test-e2e-beta-chrome:
requires:
- prep-deps-npm
- prep-build
- test-e2e-beta-firefox:
requires:
- prep-deps-npm
- prep-build
# - test-e2e-beta-drizzle:
# requires:
# - prep-deps-npm
# - prep-build
- test-unit:
requires:
- prep-deps-npm
2018-09-26 02:44:57 +02:00
- test-mozilla-lint:
requires:
- prep-deps-npm
- prep-build
- test-integration-flat-chrome:
requires:
- prep-deps-npm
- prep-scss
- test-integration-flat-firefox:
requires:
- prep-deps-npm
- prep-scss
- all-tests-pass:
requires:
- test-lint
- test-unit
2018-09-26 02:44:57 +02:00
- test-mozilla-lint
2018-05-28 18:22:48 +02:00
- test-e2e-beta-chrome
- test-e2e-beta-firefox
# - test-e2e-beta-drizzle
- test-integration-flat-chrome
- test-integration-flat-firefox
- job-screens:
requires:
- prep-deps-npm
- prep-build
- all-tests-pass
- job-publish-prerelease:
requires:
- prep-deps-npm
- prep-build
- job-screens
- all-tests-pass
2018-05-18 20:29:10 +02:00
- job-publish-release:
filters:
branches:
only: master
requires:
- prep-deps-npm
- prep-build
- prep-docs
2018-05-18 20:29:10 +02:00
- job-screens
- all-tests-pass
2018-03-09 21:47:01 +01:00
2018-03-09 21:38:28 +01:00
jobs:
prep-deps-npm:
2018-03-09 21:38:28 +01:00
docker:
- image: circleci/node:8.11.3-browsers
2018-03-09 21:38:28 +01:00
steps:
- checkout
- restore_cache:
keys:
2018-07-21 18:59:22 +02:00
- v1.0-dependency-cache-{{ checksum "package-lock.json" }}
2018-03-09 21:38:28 +01:00
- run:
2018-07-06 21:33:53 +02:00
name: Install npm 6 + deps via npm
2018-07-06 06:32:12 +02:00
command: |
sudo npm install -g npm@6 && npm install --no-save --no-audit
- persist_to_workspace:
root: .
paths:
- node_modules
2018-03-09 21:38:28 +01:00
- save_cache:
2018-07-21 18:59:22 +02:00
key: v1.0-dependency-cache-{{ checksum "package-lock.json" }}
paths:
2018-07-06 06:32:12 +02:00
- node_modules
2018-03-09 23:58:02 +01:00
2018-03-27 23:16:58 +02:00
prep-build:
docker:
- image: circleci/node:8.11.3-browsers
2018-03-27 23:16:58 +02:00
steps:
- checkout
- attach_workspace:
at: .
2018-03-27 23:16:58 +02:00
- run:
name: build:dist
command: npm run dist
- run:
name: build:debug
command: find dist/ -type f -exec md5sum {} \; | sort -k 2
- persist_to_workspace:
root: .
2018-03-27 23:16:58 +02:00
paths:
- dist
- builds
2018-05-18 20:50:46 +02:00
prep-docs:
docker:
- image: circleci/node:8.11.3-browsers
2018-05-18 20:50:46 +02:00
steps:
- checkout
- attach_workspace:
at: .
2018-05-18 20:50:46 +02:00
- run:
name: build:dist
command: npm run doc
- persist_to_workspace:
root: .
2018-05-18 20:50:46 +02:00
paths:
- docs/jsdocs
2018-05-18 20:50:46 +02:00
prep-scss:
docker:
- image: circleci/node:8.11.3-browsers
steps:
- checkout
- attach_workspace:
at: .
- run:
name: Get Scss Cache key
2018-03-09 22:50:57 +01:00
# this allows us to checksum against a whole directory
2018-03-10 00:30:58 +01:00
command: find ui/app/css -type f -exec md5sum {} \; | sort -k 2 > scss_checksum
- run:
name: Build for integration tests
2018-03-09 22:50:57 +01:00
command: npm run test:integration:build
- persist_to_workspace:
root: .
paths:
- ui/app/css/output
test-lint:
2018-03-09 21:38:28 +01:00
docker:
- image: circleci/node:8.11.3-browsers
2018-03-09 21:38:28 +01:00
steps:
- checkout
- attach_workspace:
at: .
2018-03-09 21:38:28 +01:00
- run:
name: Test
command: npm run lint
2019-02-20 18:41:34 +01:00
# test-deps:
# docker:
# - image: circleci/node:8.11.3-browsers
# steps:
# - checkout
# - attach_workspace:
# at: .
# - run:
# name: Test
# command: sudo npm install -g npm@6 && npm audit
2018-05-02 20:05:39 +02:00
# test-e2e-beta-drizzle:
# docker:
# - image: circleci/node:8.11.3-browsers
# steps:
# - checkout
# - attach_workspace:
# at: .
# - run:
# name: test:e2e:drizzle:beta
# command: npm run test:e2e:drizzle:beta
# - store_artifacts:
# path: test-artifacts
# destination: test-artifacts
2018-05-28 18:22:48 +02:00
test-e2e-beta-chrome:
docker:
- image: circleci/node:8.11.3-browsers
2018-05-28 18:22:48 +02:00
steps:
- checkout
- attach_workspace:
at: .
2018-05-28 18:22:48 +02:00
- run:
name: test:e2e:chrome:beta
command: npm run test:e2e:chrome:beta
- store_artifacts:
path: test-artifacts
destination: test-artifacts
test-e2e-beta-firefox:
docker:
- image: circleci/node:8.11.3-browsers
2018-05-28 18:22:48 +02:00
steps:
- checkout
- run:
name: Install Firefox
command: ./.circleci/scripts/firefox-install
- attach_workspace:
at: .
2018-05-28 18:22:48 +02:00
- run:
name: test:e2e:firefox:beta
command: npm run test:e2e:firefox:beta
- store_artifacts:
path: test-artifacts
destination: test-artifacts
job-screens:
2018-03-30 10:01:16 +02:00
docker:
- image: circleci/node:8.11.3-browsers
2018-03-30 10:01:16 +02:00
steps:
- checkout
- attach_workspace:
at: .
2018-03-30 10:01:16 +02:00
- run:
name: Test
command: npm run test:screens
- persist_to_workspace:
root: .
paths:
- test-artifacts
job-publish-prerelease:
docker:
- image: circleci/node:8.11.3-browsers
steps:
- checkout
- attach_workspace:
at: .
- store_artifacts:
path: dist/sourcemaps
destination: builds/sourcemaps
- store_artifacts:
path: builds
destination: builds
2018-03-30 10:01:16 +02:00
- store_artifacts:
path: test-artifacts
destination: test-artifacts
- run:
name: build:announce
command: ./development/metamaskbot-build-announce.js
2018-05-18 20:29:10 +02:00
job-publish-release:
docker:
- image: circleci/node:8.11.3-browsers
2018-05-18 20:29:10 +02:00
steps:
- checkout
- attach_workspace:
at: .
- run:
name: sentry sourcemaps upload
command: npm run sentry:publish
- run:
name: github gh-pages docs publish
command: >
git config --global user.name "metamaskbot" &&
git config --global user.email "admin@metamask.io" &&
npm run publish-docs
2018-03-30 10:01:16 +02:00
test-unit:
docker:
- image: circleci/node:8.11.3-browsers
steps:
- checkout
- attach_workspace:
at: .
- run:
name: test:coverage
command: npm run test:coverage
2018-09-26 02:44:57 +02:00
test-mozilla-lint:
docker:
- image: circleci/node:8.11.3-browsers
steps:
- checkout
- attach_workspace:
at: .
- run:
name: test:mozilla-lint
command: npm run mozilla-lint
test-integration-flat-firefox:
docker:
- image: circleci/node:8.11.3-browsers
steps:
- checkout
- attach_workspace:
at: .
- run:
name: Install Firefox
command: ./.circleci/scripts/firefox-install
- run:
name: test:integration:flat
command: npm run test:flat
test-integration-flat-chrome:
environment:
2018-03-10 20:13:27 +01:00
browsers: '["Chrome"]'
docker:
- image: circleci/node:8.11.3-browsers
steps:
- checkout
- attach_workspace:
at: .
- run:
name: test:integration:flat
command: npm run test:flat
test-integration-mascara-firefox:
docker:
- image: circleci/node:8.11.3-browsers
steps:
- checkout
- attach_workspace:
at: .
- run:
name: Install Firefox
command: ./.circleci/scripts/firefox-install
- run:
name: test:integration:mascara
command: npm run test:mascara
test-integration-mascara-chrome:
environment:
2018-03-10 20:13:27 +01:00
browsers: '["Chrome"]'
docker:
- image: circleci/node:8.11.3-browsers
steps:
- checkout
- attach_workspace:
at: .
- run:
name: test:integration:mascara
command: npm run test:mascara
all-tests-pass:
docker:
- image: circleci/node:8.11.3-browsers
steps:
- run:
name: All Tests Passed
command: echo 'weew - everything passed!'