Skip to content

Commit 2c5571a

Browse files
committed
chore: remove Shippable CI
1 parent bff314d commit 2c5571a

File tree

4 files changed

+1
-49
lines changed

4 files changed

+1
-49
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ Officially supported CI servers:
6767
| [Render](https://render.com/) | `ci.RENDER` ||
6868
| [Sail CI](https://sail.ci/) | `ci.SAIL` ||
6969
| [Screwdriver](https://screwdriver.cd/) | `ci.SCREWDRIVER` ||
70-
| [Semaphore](https://semaphoreci.com) | `ci.SEMAPHORE` ||
71-
| [Shippable](https://www.shippable.com/) | `ci.SHIPPABLE` ||
70+
| [Semaphore](https://semaphoreci.com) | `ci.SEMAPHORE` | ✅ |-
7271
| [Solano CI](https://www.solanolabs.com/) | `ci.SOLANO` ||
7372
| [Sourcehut](https://sourcehut.org/) | `ci.SOURCEHUT` | 🚫 |
7473
| [Strider CD](https://strider-cd.github.io/) | `ci.STRIDER` | 🚫 |

index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export const RENDER: boolean;
6161
export const SAIL: boolean;
6262
export const SCREWDRIVER: boolean;
6363
export const SEMAPHORE: boolean;
64-
export const SHIPPABLE: boolean;
6564
export const SOLANO: boolean;
6665
export const SOURCEHUT: boolean;
6766
export const STRIDER: boolean;

test.js

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -467,44 +467,6 @@ test('Semaphore - Not PR', function (t) {
467467
t.end()
468468
})
469469

470-
test('Shippable - PR', function (t) {
471-
process.env.SHIPPABLE = 'true'
472-
process.env.IS_PULL_REQUEST = 'true'
473-
474-
clearModule('./')
475-
const ci = require('./')
476-
477-
t.equal(ci.isCI, true)
478-
t.equal(ci.isPR, true)
479-
t.equal(ci.name, 'Shippable')
480-
t.equal(ci.SHIPPABLE, true)
481-
assertVendorConstants('SHIPPABLE', ci, t)
482-
483-
delete process.env.SHIPPABLE
484-
delete process.env.IS_PULL_REQUEST
485-
486-
t.end()
487-
})
488-
489-
test('Semaphore - Not PR', function (t) {
490-
process.env.SHIPPABLE = 'true'
491-
process.env.IS_PULL_REQUEST = 'false'
492-
493-
clearModule('./')
494-
const ci = require('./')
495-
496-
t.equal(ci.isCI, true)
497-
t.equal(ci.isPR, false)
498-
t.equal(ci.name, 'Shippable')
499-
t.equal(ci.SHIPPABLE, true)
500-
assertVendorConstants('SHIPPABLE', ci, t)
501-
502-
delete process.env.SHIPPABLE
503-
delete process.env.IS_PULL_REQUEST
504-
505-
t.end()
506-
})
507-
508470
test('Solano CI - PR', function (t) {
509471
process.env.TDDIUM = 'true'
510472
process.env.TDDIUM_PR_ID = '42'

vendors.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -233,14 +233,6 @@
233233
"env": "SEMAPHORE",
234234
"pr": "PULL_REQUEST_NUMBER"
235235
},
236-
{
237-
"name": "Shippable",
238-
"constant": "SHIPPABLE",
239-
"env": "SHIPPABLE",
240-
"pr": {
241-
"IS_PULL_REQUEST": "true"
242-
}
243-
},
244236
{
245237
"name": "Solano CI",
246238
"constant": "SOLANO",

0 commit comments

Comments
 (0)