Skip to content

Commit c1070e0

Browse files
authored
test: fix ci (#17)
1 parent d617f9a commit c1070e0

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
sudo: false
22
language: node_js
3+
34
matrix:
45
include:
56
- node_js: 4
67
env: CXX=g++-4.8
78
- node_js: 6
89
env:
9-
- SAUCE=true
1010
- CXX=g++-4.8
1111
- node_js: stable
1212
env: CXX=g++-4.8
1313

1414
# Make sure we have new NPM.
1515
before_install:
16-
- npm install -g npm
16+
- npm install -g npm@4
1717

1818
script:
1919
- npm run lint
2020
- npm test
2121
- npm run coverage
22+
- make test
2223

2324
before_script:
2425
- export DISPLAY=:99.0

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
![](https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square)
1212
![](https://img.shields.io/badge/Node.js-%3E%3D4.0.0-orange.svg?style=flat-square)
1313

14-
[![Sauce Test Status](https://saucelabs.com/browser-matrix/js-ipfs-unixfs.svg)](https://saucelabs.com/u/js-ipfs-unixfs)
15-
1614
> JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)
1715
1816
[The unixfs spec can be found inside the ipfs/specs repository](http://github.com/ipfs/specs)

circle.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ machine:
55
dependencies:
66
pre:
77
- google-chrome --version
8-
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
9-
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
8+
- curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
9+
- sudo dpkg -i google-chrome.deb || true
1010
- sudo apt-get update
11-
- sudo apt-get --only-upgrade install google-chrome-stable
11+
- sudo apt-get install -f
12+
- sudo apt-get install --only-upgrade lsb-base
13+
- sudo dpkg -i google-chrome.deb
1214
- google-chrome --version

0 commit comments

Comments
 (0)