mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-28 19:41:18 +01:00
Moved back to workflows.
This commit is contained in:
parent
8062e304b7
commit
62f0843283
1 changed files with 50 additions and 25 deletions
|
@ -1,12 +1,6 @@
|
|||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
# specify the version you desire here
|
||||
- image: node:8
|
||||
- image: selenium/standalone-chrome:3.8.1
|
||||
working_directory: ~/repo
|
||||
steps:
|
||||
templates:
|
||||
steps: &steps
|
||||
- checkout
|
||||
- run:
|
||||
name: "Create artifacts directory"
|
||||
|
@ -30,3 +24,34 @@ jobs:
|
|||
- store_artifacts:
|
||||
path: /tmp/artifacts
|
||||
destination: /artifacts
|
||||
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-linux-node-v6
|
||||
steps: *steps
|
||||
build-linux-node-v8:
|
||||
docker:
|
||||
# specify the version you desire here
|
||||
- image: node:8
|
||||
- image: selenium/standalone-chrome:3.1.0
|
||||
working_directory: ~/repo-linux-node-v8
|
||||
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-linux-node-v9
|
||||
steps: *steps
|
||||
|
||||
workflows:
|
||||
version: 2
|
||||
build:
|
||||
jobs:
|
||||
- build-linux-node-v8
|
||||
# - build-linux-node-v6
|
||||
# - build-linux-node-v9
|
||||
|
||||
|
|
Loading…
Reference in a new issue