Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit b4518e0

Browse files
Merge pull request #15 from libp2p/automatic-ci-script-update
Updating CI files
2 parents 2dd069b + ee9dbeb commit b4518e0

File tree

4 files changed

+22
-16
lines changed

4 files changed

+22
-16
lines changed

.travis.yml

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

@@ -13,12 +14,15 @@ matrix:
1314
script:
1415
- npm run lint
1516
- npm run test
16-
- make test
17+
- npm run coverage
1718

1819
before_script:
1920
- export DISPLAY=:99.0
2021
- sh -e /etc/init.d/xvfb start
2122

23+
after_success:
24+
- npm run coverage-publish
25+
2226
addons:
2327
firefox: 'latest'
2428
apt:

appveyor.yml

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,26 +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+
14
environment:
25
matrix:
36
- nodejs_version: "6"
47
- nodejs_version: "8"
58

6-
init:
7-
- git config --global core.autocrlf input
9+
matrix:
10+
fast_finish: true
811

9-
# cache:
10-
# - node_modules
12+
install:
13+
# Install Node.js
14+
- ps: Install-Product node $env:nodejs_version
1115

12-
platform:
13-
- x64
16+
# Upgrade npm
17+
- npm install -g npm
1418

15-
install:
16-
- ps: Install-Product node $env:nodejs_version $env:platform
19+
# Output our current versions for debugging
1720
- node --version
1821
- npm --version
22+
23+
# Install our package dependencies
1924
- npm install
2025

2126
test_script:
22-
- npm test
27+
- npm run test:node
2328

2429
build: off
25-
26-
version: "{build}"

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-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
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

0 commit comments

Comments
 (0)