master Merge pull request #244 from gucong3000/binary_module_name

Push event #1 errored

  • Ran for
  • Total time
sudo: false

language: node_js

node_js:
  - stable
  - 7
  - 6
  - 5
  - 4
  - 0

os:
  - linux
  - osx

addons:
  apt:
    sources:
      - ubuntu-toolchain-r-test
    packages:
      - doxygen
      - g++-4.8

# Install scripts. (runs after repo cloning)
install:
  - if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi
  # install modules
  - npm install --build-from-source

# Post-install test scripts.
script:
  - if [ $TRAVIS_OS_NAME == "linux" ] && [ $TRAVIS_NODE_VERSION == "stable" ]; then
      make test VERBOSE=1;
      make package VERBOSE=1;
    fi

  - npm test
  - npm run deploy
Build Config
{
  "os": [
    "linux",
    "osx"
  ],
  "sudo": false,
  "addons": {
    "apt": {
      "sources": [
        "ubuntu-toolchain-r-test"
      ],
      "packages": [
        "doxygen",
        "g++-4.8"
      ]
    }
  },
  "script": [
    "if [ $TRAVIS_OS_NAME == \"linux\" ] && [ $TRAVIS_NODE_VERSION == \"stable\" ]; then make test VERBOSE=1; make package VERBOSE=1; fi",
    "npm test",
    "npm run deploy"
  ],
  "install": [
    "if [[ $TRAVIS_OS_NAME == \"linux\" ]]; then export CXX=g++-4.8; fi",
    "npm install --build-from-source"
  ],
  "node_js": [
    "stable",
    7,
    6,
    5,
    4,
    0
  ],
  "language": "node_js"
}