Skip to content

Commit c25791c

Browse files
committed
Updating CI files
This commit updates all CI scripts to the latest version
1 parent 0870068 commit c25791c

File tree

4 files changed

+34
-6
lines changed

4 files changed

+34
-6
lines changed

.travis.yml

+1-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

@@ -14,7 +15,6 @@ script:
1415
- npm run lint
1516
- npm run test
1617
- npm run coverage
17-
- make test
1818

1919
before_script:
2020
- export DISPLAY=:99.0

appveyor.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+
version: "{build}"
3+
4+
environment:
5+
matrix:
6+
- nodejs_version: "6"
7+
- nodejs_version: "8"
8+
9+
matrix:
10+
fast_finish: true
11+
12+
install:
13+
# Install Node.js
14+
- ps: Install-Product node $env:nodejs_version
15+
16+
# Upgrade npm
17+
- npm install -g npm
18+
19+
# Output our current versions for debugging
20+
- node --version
21+
- npm --version
22+
23+
# Install our package dependencies
24+
- npm install
25+
26+
test_script:
27+
- npm run test:node
28+
29+
build: off

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

+2-5
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
machine:
23
node:
34
version: stable
@@ -6,13 +7,9 @@ dependencies:
67
pre:
78
- google-chrome --version
89
- curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
9-
- 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
1010
- sudo dpkg -i google-chrome.deb || true
11-
- sudo dpkg -i libnss3*.deb || true
1211
- sudo apt-get update
13-
- sudo apt-get install -f || true
14-
- sudo dpkg -i libnss3*.deb
1512
- sudo apt-get install -f
1613
- sudo apt-get install --only-upgrade lsb-base
1714
- sudo dpkg -i google-chrome.deb
18-
- google-chrome --version
15+
- google-chrome --version

0 commit comments

Comments
 (0)