Skip to content

MuncleUscles/ubuntu1204_nodejs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ubuntu1204_nodejs

Shippable CI image for Node.js on Ubuntu 12.04. Available Node.js versions:

  1. 0.8
  2. 0.10
  3. 0.11
  4. 0.12

How to use

You can use this image to run node.js builds on Shippable. Just update your shippable.yml file and add the build_image directive. You should also activate the appropriate nvm so your build runs against the correct version of node.js. Here's a sample YML file to get you going:

language: node_js
node_js:
  - 0.8
  - 0.10
  - 0.11
  - 0.12

build_image: shippableimages/ubuntu1204_nodejs

before_install:
  # activate the node.js version
  - source ~/.nvm/nvm.sh && nvm install $SHIPPABLE_NODE_VERSION
  - node --version
  - npm install -g grunt-cli

install:
  - npm install

script:
  - grunt

About

Shippable CI image for Node.js on Ubuntu 12.04

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%