mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-29 08:40:27 +01:00
Added multiple nodejs versions.
This commit is contained in:
parent
ac51902435
commit
fe0e7af033
1 changed files with 17 additions and 0 deletions
|
@ -25,6 +25,13 @@ templates:
|
||||||
path: /tmp/artifacts
|
path: /tmp/artifacts
|
||||||
destination: /artifacts
|
destination: /artifacts
|
||||||
jobs:
|
jobs:
|
||||||
|
build-linux-node-v6:
|
||||||
|
docker:
|
||||||
|
# specify the version you desire here
|
||||||
|
- image: node:6
|
||||||
|
- image: selenium/standalone-chrome:3.1.0
|
||||||
|
working_directory: ~/repo
|
||||||
|
steps: *steps
|
||||||
build-linux-node-v8:
|
build-linux-node-v8:
|
||||||
docker:
|
docker:
|
||||||
# specify the version you desire here
|
# specify the version you desire here
|
||||||
|
@ -32,9 +39,19 @@ jobs:
|
||||||
- image: selenium/standalone-chrome:3.1.0
|
- image: selenium/standalone-chrome:3.1.0
|
||||||
working_directory: ~/repo
|
working_directory: ~/repo
|
||||||
steps: *steps
|
steps: *steps
|
||||||
|
build-linux-node-v9:
|
||||||
|
docker:
|
||||||
|
# specify the version you desire here
|
||||||
|
- image: node:9
|
||||||
|
- image: selenium/standalone-chrome:3.1.0
|
||||||
|
working_directory: ~/repo
|
||||||
|
steps: *steps
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
build:
|
build:
|
||||||
jobs:
|
jobs:
|
||||||
|
- build-linux-node-v6
|
||||||
- build-linux-node-v8
|
- build-linux-node-v8
|
||||||
|
- build-linux-node-v9
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue