Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
chore: gotta get green (#1354)
Browse files Browse the repository at this point in the history
* chore: update libp2p-webrtc-star

* chore: update interface-ipfs-core

* chore: bump interface-ipfs-core

* chore: update badges

* chore: no more jenkins or appveyor

* chore: badges
  • Loading branch information
daviddias committed May 15, 2018
1 parent 7362652 commit 83d7c48
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 63 deletions.
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

9 changes: 2 additions & 7 deletions README.md
Expand Up @@ -17,16 +17,11 @@

<p align="center">
<a href="https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fipfs%2Fjs-ipfs?ref=badge_small" alt="FOSSA Status"><img src="https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fipfs%2Fjs-ipfs.svg?type=small"/></a>
<a href="https://travis-ci.org/ipfs/js-ipfs"><img src="https://travis-ci.org/ipfs/js-ipfs.svg?branch=master" /></a>
<a href="https://circleci.com/gh/ipfs/js-ipfs"><img src="https://circleci.com/gh/ipfs/js-ipfs.svg?style=svg" /></a>
<a href="https://ci.appveyor.com/project/wubalubadubdub/js-ipfs"><img src="https://ci.appveyor.com/api/projects/status/txn75y7843r2ff0p?svg=true" /></a>
<a href="https://coveralls.io/github/ipfs/js-ipfs?branch=master"><img src="https://coveralls.io/repos/github/ipfs/js-ipfs/badge.svg?branch=master"></a>
<br>
<a href="https://david-dm.org/ipfs/js-ipfs"><img src="https://david-dm.org/ipfs/js-ipfs.svg?style=flat-square" /></a>
<a href="https://github.com/feross/standard"><img src="https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square"></a>
<a href="https://github.com/RichardLitt/standard-readme"><img src="https://img.shields.io/badge/standard--readme-OK-green.svg?style=flat-square" /></a>
<a href=""><img src="https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square" /></a>
<a href=""><img src="https://img.shields.io/badge/Node.js-%3E%3D6.0.0-orange.svg?style=flat-square" /></a>
<a href=""><img src="https://img.shields.io/badge/npm-%3E%3D5.0.0-orange.svg?style=flat-square" /></a>
<a href=""><img src="https://img.shields.io/badge/Node.js-%3E%3D8.0.0-orange.svg?style=flat-square" /></a>
<br>
</p>

Expand Down
28 changes: 0 additions & 28 deletions appveyor.yml

This file was deleted.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -73,7 +73,7 @@
"expose-loader": "^0.7.5",
"form-data": "^2.3.2",
"hat": "0.0.3",
"interface-ipfs-core": "~0.65.5",
"interface-ipfs-core": "~0.65.7",
"ipfsd-ctl": "~0.34.0",
"lodash": "^4.17.10",
"mocha": "^5.1.1",
Expand Down Expand Up @@ -132,7 +132,7 @@
"libp2p-railing": "~0.8.1",
"libp2p-secio": "~0.10.0",
"libp2p-tcp": "~0.12.0",
"libp2p-webrtc-star": "~0.14.0",
"libp2p-webrtc-star": "~0.15.0",
"libp2p-websocket-star": "~0.8.0",
"libp2p-websockets": "~0.12.0",
"lodash.flatmap": "^4.5.0",
Expand Down
10 changes: 6 additions & 4 deletions test/core/interface/files.js
Expand Up @@ -6,16 +6,18 @@ const parallel = require('async/parallel')

const IPFS = require('../../../src')

const DaemonFactory = require('ipfsd-ctl')
const df = DaemonFactory.create({ type: 'proc', exec: IPFS })
const IPFSFactory = require('ipfsd-ctl')
const f = IPFSFactory.create({ type: 'proc', exec: IPFS })

const nodes = []
const common = {
setup: function (callback) {
callback(null, {
spawnNode: (cb) => {
df.spawn({
initOptions: { bits: 512 }
f.spawn({
initOptions: {
bits: 512
}
}, (err, _ipfsd) => {
if (err) {
return cb(err)
Expand Down

0 comments on commit 83d7c48

Please sign in to comment.