mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-29 10:30:26 +01:00
Added yaml inheritance to .circleci/config.yml
This commit is contained in:
parent
cb4f5ea963
commit
e0ff342702
1 changed files with 27 additions and 25 deletions
|
@ -1,12 +1,6 @@
|
||||||
version: 2
|
version: 2
|
||||||
jobs:
|
templates:
|
||||||
build:
|
steps: &steps
|
||||||
docker:
|
|
||||||
# specify the version you desire here
|
|
||||||
- image: node:8
|
|
||||||
- image: selenium/standalone-chrome:3.1.0
|
|
||||||
working_directory: ~/repo
|
|
||||||
steps:
|
|
||||||
- checkout
|
- checkout
|
||||||
- run:
|
- run:
|
||||||
name: "Create artifacts directory"
|
name: "Create artifacts directory"
|
||||||
|
@ -30,3 +24,11 @@ jobs:
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
path: /tmp/artifacts
|
path: /tmp/artifacts
|
||||||
destination: /artifacts
|
destination: /artifacts
|
||||||
|
jobs:
|
||||||
|
build-linux-node-v8:
|
||||||
|
docker:
|
||||||
|
# specify the version you desire here
|
||||||
|
- image: node:8
|
||||||
|
- image: selenium/standalone-chrome:3.1.0
|
||||||
|
working_directory: ~/repo
|
||||||
|
steps: *steps
|
||||||
|
|
Loading…
Reference in a new issue