Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
CI: Updates and formats configuration files.
Browse files Browse the repository at this point in the history
  • Loading branch information
am11 committed Feb 28, 2015
1 parent cfc60b1 commit 74ce913
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 28 deletions.
37 changes: 20 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,35 @@
language: node_js
env:
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true

compiler:
- gcc
env: SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true

This comment has been minimized.

Copy link
@am11

am11 Feb 28, 2015

Author Contributor

Inlining all keys with single value.


compiler: gcc

node_js:
- "0.10"
- "0.12"
- iojs
- 0.10
- node # will fetch the latest node.js version
- iojs # will fetch the latest io.js version

matrix:
fast_finish: true
allow_failures:
- node_js: iojs
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test;
- sudo apt-get update;
- sudo apt-get install gcc-4.8 g++-4.8;
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20;
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 20;
- g++ --version;
- sudo apt-get update -qq;

before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update
- sudo apt-get install gcc-4.8 g++-4.8
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 20
- g++ --version
- sudo apt-get update -qq
- git submodule update --init --recursive
after_success:
- npm run-script coverage

after_success: npm run-script coverage

cache:
directories:
- node_modules

notifications:
webhooks:
urls:
Expand Down
17 changes: 6 additions & 11 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,21 @@
version: "{build}"

init:
- git config --global core.autocrlf input

This comment has been minimized.

Copy link
@am11

am11 Feb 28, 2015

Author Contributor

not required

build: off

environment:
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI: true
matrix:
# node.js
- nodejs_version: 0.10
- nodejs_version: 0.12
- nodejs_version: 0 # will fetch the latest node.js version
# io.js
- nodejs_version: "1.2"
- nodejs_version: 1 # will fetch the latest io.js version

install:
- ps: Install-Product node $env:nodejs_version
- cmd: SET PATH=C:\python27;%PATH%

This comment has been minimized.

Copy link
@am11

am11 Feb 28, 2015

Author Contributor

not required

- git submodule update --init --recursive
- ps: npm install --msvs_version=2013
- node --version
- npm --version
- git submodule update --init --recursive
- ps: npm install --msvs_version=2013

test_script:
- npm test

build: off
test_script: npm test

0 comments on commit 74ce913

Please sign in to comment.