Skip to content

Commit d6315fc

Browse files
committed
chore: remove solano CI
1 parent bb13901 commit d6315fc

File tree

4 files changed

+0
-50
lines changed

4 files changed

+0
-50
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ Officially supported CI servers:
7070
| [Sail CI](https://sail.ci/) | `ci.SAIL` ||
7171
| [Screwdriver](https://screwdriver.cd/) | `ci.SCREWDRIVER` ||
7272
| [Semaphore](https://semaphoreci.com) | `ci.SEMAPHORE` ||
73-
| [Solano CI](https://www.solanolabs.com/) | `ci.SOLANO` ||
7473
| [Sourcehut](https://sourcehut.org/) | `ci.SOURCEHUT` | 🚫 |
7574
| [Strider CD](https://strider-cd.github.io/) | `ci.STRIDER` | 🚫 |
7675
| [TaskCluster](http://docs.taskcluster.net) | `ci.TASKCLUSTER` | 🚫 |
@@ -117,11 +116,6 @@ the given CI server, otherwise `false`.
117116
Examples of vendor constants are `ci.TRAVIS` or `ci.APPVEYOR`. For a
118117
complete list, see the support table above.
119118

120-
Deprecated vendor constants that will be removed in the next major
121-
release:
122-
123-
- `ci.TDDIUM` (Solano CI) This have been renamed `ci.SOLANO`
124-
125119
## Ports
126120

127121
ci-info has been ported to the following languages

index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ export const RENDER: boolean;
6363
export const SAIL: boolean;
6464
export const SCREWDRIVER: boolean;
6565
export const SEMAPHORE: boolean;
66-
export const SOLANO: boolean;
6766
export const SOURCEHUT: boolean;
6867
export const STRIDER: boolean;
6968
export const TASKCLUSTER: boolean;

test.js

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

470-
test('Solano CI - PR', function (t) {
471-
process.env.TDDIUM = 'true'
472-
process.env.TDDIUM_PR_ID = '42'
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, 'Solano CI')
480-
t.equal(ci.SOLANO, true)
481-
assertVendorConstants('SOLANO', ci, t)
482-
483-
delete process.env.TDDIUM
484-
delete process.env.TDDIUM_PR_ID
485-
486-
t.end()
487-
})
488-
489-
test('Solano CI - Not PR', function (t) {
490-
process.env.TDDIUM = 'true'
491-
492-
clearModule('./')
493-
const ci = require('./')
494-
495-
t.equal(ci.isCI, true)
496-
t.equal(ci.isPR, false)
497-
t.equal(ci.name, 'Solano CI')
498-
t.equal(ci.SOLANO, true)
499-
assertVendorConstants('SOLANO', ci, t)
500-
501-
delete process.env.TDDIUM
502-
503-
t.end()
504-
})
505-
506470
test('Travis CI - PR', function (t) {
507471
process.env.TRAVIS = 'true'
508472
process.env.TRAVIS_PULL_REQUEST = '42'
@@ -1011,7 +975,6 @@ test('Vela - PR', function (t) {
1011975
function assertVendorConstants (expect, ci, t) {
1012976
ci._vendors.forEach(function (constant) {
1013977
let bool = constant === expect
1014-
bool = (expect === 'SOLANO' && constant === 'TDDIUM') || bool // support deprecated option
1015978
t.equal(ci[constant], bool, 'ci.' + constant)
1016979
})
1017980
}

vendors.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -244,12 +244,6 @@
244244
"env": "SEMAPHORE",
245245
"pr": "PULL_REQUEST_NUMBER"
246246
},
247-
{
248-
"name": "Solano CI",
249-
"constant": "SOLANO",
250-
"env": "TDDIUM",
251-
"pr": "TDDIUM_PR_ID"
252-
},
253247
{
254248
"name": "Sourcehut",
255249
"constant": "SOURCEHUT",

0 commit comments

Comments
 (0)