Skip to content

Commit 921b70c

Browse files
committed
Updating CI files
This commit updates all CI scripts to the latest version
1 parent 9b8c3ba commit 921b70c

File tree

3 files changed

+17
-19
lines changed

3 files changed

+17
-19
lines changed

appveyor.yml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
1+
version: "{build}"
2+
13
environment:
24
matrix:
35
- nodejs_version: "6"
46
- nodejs_version: "8"
57

6-
# cache:
7-
# - node_modules
8-
9-
platform:
10-
- x64
8+
matrix:
9+
fast_finish: true
1110

1211
install:
13-
- ps: Install-Product node $env:nodejs_version $env:platform
14-
- npm install
12+
# Install Node.js
13+
- ps: Install-Product node $env:nodejs_version
1514

16-
test_script:
15+
# Upgrade npm
16+
- npm install -g npm
17+
18+
# Output our current versions for debugging
1719
- node --version
1820
- npm --version
19-
- npm test
2021

21-
build: off
22+
# Install our package dependencies
23+
- npm install
2224

23-
version: "{build}"
25+
test_script:
26+
- npm run test:node
27+
28+
build: off

ci/Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
javascript()

circle.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,12 @@ machine:
22
node:
33
version: stable
44

5-
test:
6-
post:
7-
- npm run coverage -- --upload
8-
95
dependencies:
106
pre:
117
- google-chrome --version
128
- 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
149
- sudo dpkg -i google-chrome.deb || true
15-
- sudo dpkg -i libnss3*.deb || true
1610
- sudo apt-get update
17-
- sudo apt-get install -f || true
18-
- sudo dpkg -i libnss3*.deb
1911
- sudo apt-get install -f
2012
- sudo apt-get install --only-upgrade lsb-base
2113
- sudo dpkg -i google-chrome.deb

0 commit comments

Comments
 (0)