drop.chapril.org-firefoxsend/circle.yml

136 lines
3.1 KiB
YAML
Raw Normal View History

2018-02-26 00:44:46 +01:00
version: 2.0
jobs:
build:
docker:
- image: circleci/node:10
2018-02-26 00:44:46 +01:00
steps:
- checkout
- restore_cache:
key: send-{{ checksum "package-lock.json" }}
- run: npm install
- save_cache:
key: send-{{ checksum "package-lock.json" }}
paths:
- node_modules
- run: npm run build
- persist_to_workspace:
root: .
paths:
- ./dist
2018-02-26 00:44:46 +01:00
test:
docker:
- image: circleci/node:10-browsers
2018-02-26 00:44:46 +01:00
steps:
- checkout
- restore_cache:
key: send-{{ checksum "package-lock.json" }}
- run: npm install
- save_cache:
key: send-{{ checksum "package-lock.json" }}
paths:
- node_modules
- run: npm run lint
- run: npm run test
2018-02-26 19:09:28 +01:00
- store_artifacts:
path: coverage
integration_tests:
machine: true
steps:
- checkout
- attach_workspace:
at: .
- run:
name: Install Docker Compose
command: |
set -x
pip install docker-compose>=1.18
docker-compose --version
- run:
command: npm run test-integration
2018-05-04 08:47:44 +02:00
- store_artifacts:
path: coverage/send-test.html
2018-02-26 00:44:46 +01:00
deploy_dev:
machine: true
steps:
- checkout
2018-02-26 00:44:46 +01:00
- attach_workspace:
at: .
2018-02-26 02:06:28 +01:00
- run: docker login -u $DOCKER_USER -p $DOCKER_PASS
2018-02-26 00:44:46 +01:00
- run: docker build -t mozilla/send:latest .
- run: docker push mozilla/send:latest
deploy_stage:
machine: true
steps:
- checkout
2018-02-26 00:44:46 +01:00
- attach_workspace:
at: .
2018-02-26 02:06:28 +01:00
- run: docker login -u $DOCKER_USER -p $DOCKER_PASS
2018-02-26 00:44:46 +01:00
- run: docker build -t mozilla/send:$CIRCLE_TAG .
- run: docker push mozilla/send:$CIRCLE_TAG
workflows:
version: 2
test_pr:
jobs:
- build:
filters:
branches:
ignore: master
2018-02-26 00:44:46 +01:00
- test:
filters:
branches:
ignore: master
2018-07-27 18:31:22 +02:00
# - integration_tests:
# filters:
# branches:
# ignore: master
# requires:
# - build
2018-02-26 00:44:46 +01:00
build_and_deploy_dev:
jobs:
- build:
filters:
branches:
only: master
tags:
ignore: /^v.*/
2018-02-26 02:06:28 +01:00
- deploy_dev:
2018-02-26 00:44:46 +01:00
requires:
- build
filters:
branches:
only: master
tags:
ignore: /^v.*/
build_and_deploy_stage:
jobs:
- build:
filters:
branches:
ignore: /.*/
2018-02-26 00:44:46 +01:00
tags:
only: /^v.*/
- test:
filters:
branches:
ignore: /.*/
2018-02-26 00:44:46 +01:00
tags:
only: /^v.*/
2018-05-04 08:47:44 +02:00
- integration_tests:
requires:
- build
filters:
branches:
ignore: /.*/
tags:
only: /^v.*/
2018-02-26 00:44:46 +01:00
- deploy_stage:
requires:
- build
- test
2018-05-04 08:47:44 +02:00
- integration_tests
2018-02-26 00:44:46 +01:00
filters:
branches:
ignore: /.*/
2018-02-26 00:44:46 +01:00
tags:
only: /^v.*/