Commit 74ce9131 by Adeel

CI: Updates and formats configuration files.

parent cfc60b1e
language: node_js language: node_js
env:
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true
compiler: env: SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true
- gcc
compiler: gcc
node_js: node_js:
- "0.10" - 0.10
- "0.12" - node # will fetch the latest node.js version
- iojs - iojs # will fetch the latest io.js version
matrix: matrix:
fast_finish: true fast_finish: true
allow_failures: allow_failures:
- node_js: iojs - 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 - git submodule update --init --recursive
after_success:
- npm run-script coverage after_success: npm run-script coverage
cache: cache:
directories: directories:
- node_modules - node_modules
notifications: notifications:
webhooks: webhooks:
urls: urls:
......
version: "{build}" version: "{build}"
init: build: off
- git config --global core.autocrlf input
environment: environment:
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI: true SKIP_SASS_BINARY_DOWNLOAD_FOR_CI: true
matrix: matrix:
# node.js # node.js
- nodejs_version: 0.10 - nodejs_version: 0.10
- nodejs_version: 0.12 - nodejs_version: 0 # will fetch the latest node.js version
# io.js # io.js
- nodejs_version: "1.2" - nodejs_version: 1 # will fetch the latest io.js version
install: install:
- ps: Install-Product node $env:nodejs_version - ps: Install-Product node $env:nodejs_version
- cmd: SET PATH=C:\python27;%PATH%
- git submodule update --init --recursive
- ps: npm install --msvs_version=2013
- node --version - node --version
- npm --version - npm --version
- git submodule update --init --recursive
- ps: npm install --msvs_version=2013
test_script: test_script: npm test
- npm test
build: off
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment