File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
sudo : false
2
2
language : node_js
3
+
3
4
matrix :
4
5
include :
5
6
- node_js : 4
6
7
env : CXX=g++-4.8
7
8
- node_js : 6
8
9
env :
9
- - SAUCE=true
10
10
- CXX=g++-4.8
11
11
- node_js : stable
12
12
env : CXX=g++-4.8
13
13
14
14
# Make sure we have new NPM.
15
15
before_install :
16
- - npm install -g npm
16
+ - npm install -g npm@4
17
17
18
18
script :
19
19
- npm run lint
20
20
- npm test
21
21
- npm run coverage
22
+ - make test
22
23
23
24
before_script :
24
25
- export DISPLAY=:99.0
Original file line number Diff line number Diff line change 11
11
![ ] ( https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square )
12
12
![ ] ( https://img.shields.io/badge/Node.js-%3E%3D4.0.0-orange.svg?style=flat-square )
13
13
14
- [ ![ Sauce Test Status] ( https://saucelabs.com/browser-matrix/js-ipfs-unixfs.svg )] ( https://saucelabs.com/u/js-ipfs-unixfs )
15
-
16
14
> JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)
17
15
18
16
[ The unixfs spec can be found inside the ipfs/specs repository] ( http://github.com/ipfs/specs )
Original file line number Diff line number Diff line change @@ -5,8 +5,10 @@ machine:
5
5
dependencies :
6
6
pre :
7
7
- 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
10
10
- 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
12
14
- google-chrome --version
You can’t perform that action at this time.
0 commit comments