-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b9e3f1
commit ce0b1fe
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
working_directory: /app | ||
docker: | ||
- image: docker:18.06.1-ce-git | ||
steps: | ||
- checkout | ||
- setup_remote_docker | ||
- run: | ||
name: Build and push image to Docker Hub | ||
command: apk --no-cache add curl bash && curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | bash - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
language: node_js | ||
dist: xenial | ||
notifications: | ||
email: false | ||
node_js: | ||
- 8 | ||
- 10 | ||
matrix: | ||
fast_finish: true | ||
script: npm run travis | ||
before_install: | ||
- npm i -g npm | ||
branches: | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ | ||
jobs: | ||
include: | ||
- stage: release | ||
node_js: 10 | ||
script: curl "https://raw.githubusercontent.com/pelias/ci-tools/master/semantic-release.sh" | bash - | ||
if: (branch = master) AND ( type = push ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,7 @@ | |
"test" | ||
], | ||
"release": { | ||
"branch": "master", | ||
"success": [] | ||
} | ||
} |