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

Commit 5d56dfc

Browse files
committed
Updating CI files
This commit updates all CI scripts to the latest version
1 parent 53956bf commit 5d56dfc

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

.travis.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Warning: This file is automatically synced from https://github.com./ipfs/ci-sync so if you want to change it, please change it there and ask someone to sync all repositories.
12
sudo: false
23
language: node_js
34

@@ -7,16 +8,21 @@ matrix:
78
env: CXX=g++-4.8
89
- node_js: 8
910
env: CXX=g++-4.8
11+
# - node_js: stable
12+
# env: CXX=g++-4.8
1013

1114
script:
1215
- npm run lint
1316
- npm run test
14-
- make test
17+
- npm run coverage
1518

1619
before_script:
1720
- export DISPLAY=:99.0
1821
- sh -e /etc/init.d/xvfb start
1922

23+
after_success:
24+
- npm run coverage-publish
25+
2026
addons:
2127
firefox: 'latest'
2228
apt:

appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Warning: This file is automatically synced from https://github.com./ipfs/ci-sync so if you want to change it, please change it there and ask someone to sync all repositories.
12
version: "{build}"
23

34
environment:

ci/Jenkinsfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Warning: This file is automatically synced from https://github.com./ipfs/ci-sync so if you want to change it, please change it there and ask someone to sync all repositories.
2+
javascript()

circle.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,14 @@
1+
# Warning: This file is automatically synced from https://github.com./ipfs/ci-sync so if you want to change it, please change it there and ask someone to sync all repositories.
12
machine:
23
node:
34
version: stable
45

5-
test:
6-
post:
7-
- npm run coverage -- --upload
8-
96
dependencies:
107
pre:
118
- google-chrome --version
129
- curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
13-
- for v in $(curl http://archive.ubuntu.com/ubuntu/pool/main/n/nss/ | grep "href=" | grep "libnss3.*deb\"" -o | grep -o "libnss3.*deb" | grep "3.28" | grep "14.04"); do curl -L -o $v http://archive.ubuntu.com/ubuntu/pool/main/n/nss/$v; done && rm libnss3-tools*_i386.deb libnss3-dev*_i386.deb
1410
- sudo dpkg -i google-chrome.deb || true
15-
- sudo dpkg -i libnss3*.deb || true
1611
- sudo apt-get update
17-
- sudo apt-get install -f || true
18-
- sudo dpkg -i libnss3*.deb
1912
- sudo apt-get install -f
2013
- sudo apt-get install --only-upgrade lsb-base
2114
- sudo dpkg -i google-chrome.deb

0 commit comments

Comments
 (0)