Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Commit

Permalink
Updating CI files
Browse files Browse the repository at this point in the history
This commit updates all CI scripts to the latest version
  • Loading branch information
victorb committed Nov 22, 2017
1 parent 2e51993 commit 2a9eea3
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 19 deletions.
9 changes: 4 additions & 5 deletions .travis.yml
@@ -1,19 +1,18 @@
sudo: false
language: node_js

matrix:
include:
- node_js: 6
env: CXX=g++-4.8
- node_js: 8
env: CXX=g++-4.8

# Make sure we have new NPM.
before_install:
- npm install -g npm
# - node_js: stable
# env: CXX=g++-4.8

script:
- npm run lint
- npm test
- npm run test
- npm run coverage

before_script:
Expand Down
27 changes: 16 additions & 11 deletions appveyor.yml
@@ -1,23 +1,28 @@
version: "{build}"

environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "8"

# cache:
# - node_modules

platform:
- x64
matrix:
fast_finish: true

install:
- ps: Install-Product node $env:nodejs_version $env:platform
- npm install
# Install Node.js
- ps: Install-Product node $env:nodejs_version

test_script:
# Upgrade npm
- npm install -g npm

# Output our current versions for debugging
- node --version
- npm --version
- npm test

build: off
# Install our package dependencies
- npm install

version: "{build}"
test_script:
- npm run test:node

build: off
1 change: 1 addition & 0 deletions ci/Jenkinsfile
@@ -0,0 +1 @@
javascript()
8 changes: 5 additions & 3 deletions circle.yml
Expand Up @@ -5,8 +5,10 @@ machine:
dependencies:
pre:
- google-chrome --version
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
- curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- sudo dpkg -i google-chrome.deb || true
- sudo apt-get update
- sudo apt-get --only-upgrade install google-chrome-stable
- sudo apt-get install -f
- sudo apt-get install --only-upgrade lsb-base
- sudo dpkg -i google-chrome.deb
- google-chrome --version

0 comments on commit 2a9eea3

Please sign in to comment.