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

323 lines
7.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
# - 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-06-06 17:56:27 +02:00
- test-deps:
requires:
- prep-deps-npm
- test-e2e-chrome:
2018-05-28 18:22:48 +02:00
requires:
- prep-deps-npm
- test-e2e-firefox:
2018-05-28 18:22:48 +02:00
requires:
- prep-deps-npm
# - 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
- test-e2e-chrome
- test-e2e-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:10.16-browsers
2018-03-09 21:38:28 +01:00
steps:
- checkout
- run:
name: Install deps via npm
2018-07-06 06:32:12 +02:00
command: |
npm ci
- persist_to_workspace:
root: .
paths:
- node_modules
2018-03-09 23:58:02 +01:00
2018-03-27 23:16:58 +02:00
prep-build:
docker:
- image: circleci/node:10.16-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:10.16-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:10.16-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:10.16-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-06-06 17:56:27 +02:00
test-deps:
docker:
- image: circleci/node:10.16-browsers
2019-06-06 17:56:27 +02:00
steps:
- checkout
- attach_workspace:
at: .
- run:
name: npm audit
command: .circleci/scripts/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
test-e2e-chrome:
2018-05-28 18:22:48 +02:00
docker:
- image: circleci/node:10.16-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
command: npm run build:test && npm run test:e2e:chrome
no_output_timeout: 20m
2018-05-28 18:22:48 +02:00
- store_artifacts:
path: test-artifacts
destination: test-artifacts
test-e2e-firefox:
2018-05-28 18:22:48 +02:00
docker:
- image: circleci/node:10.16-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
command: npm run build:test && npm run test:e2e:chrome
no_output_timeout: 20m
2018-05-28 18:22:48 +02:00
- store_artifacts:
path: test-artifacts
destination: test-artifacts
job-screens:
2018-03-30 10:01:16 +02:00
docker:
- image: circleci/node:10.16-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:10.16-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:10.16-browsers
2018-05-18 20:29:10 +02:00
steps:
- checkout
- attach_workspace:
at: .
- run:
name: sentry sourcemaps upload
command: npm run sentry:publish
2019-07-01 19:30:08 +02:00
# - 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:10.16-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:10.16-browsers
2018-09-26 02:44:57 +02:00
steps:
- checkout
- attach_workspace:
at: .
- run:
name: test:mozilla-lint
command: npm run mozilla-lint
test-integration-flat-firefox:
docker:
- image: circleci/node:10.16-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:10.16-browsers
steps:
- checkout
- attach_workspace:
at: .
- run:
name: test:integration:flat
command: npm run test:flat
all-tests-pass:
docker:
- image: circleci/node:10.16-browsers
steps:
- run:
name: All Tests Passed
command: echo 'weew - everything passed!'