Skip to content

Commit 237fd7a

Browse files
richardschneiderdaviddias
authored andcommitted
chore: windows interop (#20)
* chore: run on appveyor * chore: get circleCI working
1 parent 1777d6c commit 237fd7a

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

appveyor.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
environment:
2+
matrix:
3+
- nodejs_version: "6"
4+
- nodejs_version: "8"
5+
6+
# cache:
7+
# - node_modules
8+
9+
platform:
10+
- x64
11+
12+
install:
13+
- ps: Install-Product node $env:nodejs_version $env:platform
14+
- npm install
15+
16+
test_script:
17+
- node --version
18+
- npm --version
19+
- npm test
20+
21+
build: off
22+
23+
version: "{build}"

circle.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ dependencies:
1010
pre:
1111
- google-chrome --version
1212
- 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
1314
- sudo dpkg -i google-chrome.deb || true
15+
- sudo dpkg -i libnss3*.deb || true
1416
- sudo apt-get update
17+
- sudo apt-get install -f || true
18+
- sudo dpkg -i libnss3*.deb
1519
- sudo apt-get install -f
1620
- sudo apt-get install --only-upgrade lsb-base
1721
- sudo dpkg -i google-chrome.deb

0 commit comments

Comments
 (0)