maputnik/.circleci/config.yml

104 lines
2.6 KiB
YAML
Raw Normal View History

version: 2
2018-01-19 18:55:37 +01:00
templates:
# Test the build **only** no webdriver
build-steps: &build-steps
- checkout
- run:
name: "Create artifacts directory"
command: mkdir /tmp/artifacts
- restore_cache:
key: v1-dependencies-{{ arch }}-{{ checksum "package.json" }}
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ arch }}-{{ checksum "package.json" }}
- run: mkdir -p /tmp/artifacts/logs
- run: npm run build
2020-02-21 09:06:01 +01:00
- run: npm run lint-js
- run: npm run lint-css
- store_artifacts:
path: /tmp/artifacts
destination: /artifacts
# Test in webdriver
2018-04-10 14:11:42 +02:00
wdio-steps: &wdio-steps
2018-01-19 18:55:37 +01:00
- checkout
- run:
name: "Create artifacts directory"
command: mkdir /tmp/artifacts
- restore_cache:
key: v1-dependencies-{{ arch }}-{{ checksum "package.json" }}
2018-01-19 18:55:37 +01:00
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ arch }}-{{ checksum "package.json" }}
2018-01-19 18:55:37 +01:00
- run: mkdir -p /tmp/artifacts/logs
- run: npm run build
2019-10-19 13:33:54 +02:00
- run: npm run profiling-build
2020-02-21 09:06:01 +01:00
- run: npm run lint-js
- run: npm run lint-css
2018-01-19 18:55:37 +01:00
- run: DOCKER_HOST=localhost npm test
- run: ./node_modules/.bin/istanbul report --include /tmp/artifacts/coverage/coverage.json --dir /tmp/artifacts/coverage html lcov
- store_artifacts:
path: /tmp/artifacts
destination: /artifacts
jobs:
build-linux-node-v10:
2018-01-19 18:55:37 +01:00
docker:
- image: node:10
- image: selenium/standalone-chrome:3.141.59
working_directory: ~/repo-linux-node-v10
steps: *wdio-steps
2019-05-05 07:47:50 +02:00
build-linux-node-v12:
docker:
- image: node:12
working_directory: ~/repo-linux-node-v12
steps: *build-steps
2019-10-23 11:10:05 +02:00
build-linux-node-v13:
docker:
- image: node:13
working_directory: ~/repo-linux-node-v13
steps: *build-steps
2018-05-08 18:34:09 +02:00
build-osx-node-v10:
2018-04-10 14:29:48 +02:00
macos:
xcode: "9.0"
dependencies:
override:
- brew install node@10
working_directory: ~/repo-osx-node-v10
steps: *build-steps
2019-05-05 07:47:50 +02:00
build-osx-node-v12:
macos:
xcode: "9.0"
dependencies:
override:
- brew install node@12
working_directory: ~/repo-osx-node-v12
steps: *build-steps
2019-10-23 11:10:05 +02:00
build-osx-node-v13:
macos:
xcode: "9.0"
dependencies:
override:
- brew install node@13
working_directory: ~/repo-osx-node-v13
steps: *build-steps
2018-01-19 18:35:19 +01:00
2018-01-19 18:55:37 +01:00
workflows:
version: 2
build:
jobs:
- build-linux-node-v10
2019-05-05 07:47:50 +02:00
- build-linux-node-v12
2019-10-23 11:10:05 +02:00
- build-linux-node-v13
- build-osx-node-v10
2019-05-05 07:47:50 +02:00
- build-osx-node-v12
2019-10-23 11:10:05 +02:00
- build-osx-node-v13