Skip to content

Commit

Permalink
Merge pull request #5 from pelias/ci-and-nodejs-updates
Browse files Browse the repository at this point in the history
CI and Node.js updates
  • Loading branch information
orangejulius authored Nov 3, 2018
2 parents de21d15 + 446aa85 commit e8399a5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 42 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ jobs:
build:
working_directory: /app
docker:
- image: docker:17.05.0-ce-git
- image: docker:18.06.1-ce-git
steps:
- checkout
- setup_remote_docker
- run:
name: Build and push image to Docker Hub
command: sh .circleci/docker.sh
command: apk --no-cache add curl bash && curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | bash -
35 changes: 0 additions & 35 deletions .circleci/docker.sh

This file was deleted.

3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ language: node_js
notifications:
email: false
node_js:
- 6
- 8
- 10
matrix:
Expand All @@ -19,4 +18,4 @@ jobs:
- stage: release
node_js: 10
script: curl "https://raw.githubusercontent.com/pelias/ci-tools/master/semantic-release.sh" | bash -
if: branch = production
if: (branch = master) AND ( type = push )
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ Valid column names for the source value are : `source`

## Requirements

Node.js 6 or higher is required.
Node.js is required.

See [Pelias software requirements](https://github.com/pelias/documentation/blob/master/requirements.md) for supported versions.

## Installation
```bash
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0-dev",
"description": "Pelias import pipeline for data from CSV files",
"engines": {
"node": ">=6.0.0"
"node": ">=8.0.0"
},
"main": "import.js",
"dependencies": {
Expand Down Expand Up @@ -59,5 +59,9 @@
"bugs": {
"url": "https://github.com/pelias/csv-importer/issues"
},
"homepage": "https://github.com/pelias/csv-importer"
"homepage": "https://github.com/pelias/csv-importer",
"release": {
"branch": "master",
"success": []
}
}

0 comments on commit e8399a5

Please sign in to comment.