Skip to content

Commit

Permalink
feat: add shippable ci (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
sibiraj-s authored and watson committed Aug 20, 2018
1 parent fe48e8e commit 05b7095
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if your CI server isn't properly detected :)

## Installation

```
```bash
npm install ci-info --save
```

Expand Down Expand Up @@ -46,6 +46,7 @@ Officially supported CI servers:
- [Jenkins CI](https://jenkins-ci.org)
- [Magnum CI](https://magnum-ci.com)
- [Semaphore](https://semaphoreci.com)
- [Shippable](https://www.shippable.com/)
- [Solano CI](https://www.solanolabs.com/)
- [Strider CD](https://strider-cd.github.io/)
- [TaskCluster](http://docs.taskcluster.net)
Expand Down Expand Up @@ -93,8 +94,9 @@ Otherwise `false`.
- `ci.HUDSON`
- `ci.JENKINS`
- `ci.MAGNUM`
- `ci.SOLANO`
- `ci.SEMAPHORE`
- `ci.SHIPPABLE`
- `ci.SOLANO`
- `ci.STRIDER`
- `ci.TASKCLUSTER`
- `ci.TEAMCITY`
Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ var vendors = [
['JENKINS', 'Jenkins', 'JENKINS_URL', 'BUILD_ID'],
['MAGNUM', 'Magnum CI', 'MAGNUM'],
['SEMAPHORE', 'Semaphore', 'SEMAPHORE'],
['SHIPPABLE', 'Shippable', 'SHIPPABLE'],
['SOLANO', 'Solano CI', 'TDDIUM'],
['STRIDER', 'Strider CD', 'STRIDER'],
['TASKCLUSTER', 'TaskCluster', 'TASK_ID', 'RUN_ID'],
Expand Down
3 changes: 3 additions & 0 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ assert.equal(ci.HUDSON, false)
assert.equal(ci.JENKINS, false)
assert.equal(ci.MAGNUM, false)
assert.equal(ci.SEMAPHORE, false)
assert.equal(ci.SHIPPABLE, false)
assert.equal(ci.SOLANO, false)
assert.equal(ci.STRIDER, false)
assert.equal(ci.TASKCLUSTER, false)
Expand Down Expand Up @@ -58,6 +59,7 @@ assert.equal(ci.HUDSON, false)
assert.equal(ci.JENKINS, false)
assert.equal(ci.MAGNUM, false)
assert.equal(ci.SEMAPHORE, false)
assert.equal(ci.SHIPPABLE, false)
assert.equal(ci.SOLANO, false)
assert.equal(ci.STRIDER, false)
assert.equal(ci.TASKCLUSTER, false)
Expand Down Expand Up @@ -88,6 +90,7 @@ assert.equal(ci.HUDSON, false)
assert.equal(ci.JENKINS, false)
assert.equal(ci.MAGNUM, false)
assert.equal(ci.SEMAPHORE, false)
assert.equal(ci.SHIPPABLE, false)
assert.equal(ci.SOLANO, false)
assert.equal(ci.TASKCLUSTER, false)
assert.equal(ci.TDDIUM, false) // Deprecated
Expand Down

0 comments on commit 05b7095

Please sign in to comment.