-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ Fast Intelligent Continous Integration For Node | |
|
||
## getting started | ||
|
||
- bin/initialize.sh which will setup nvm and iojs for you. | ||
- bin/initialize.sh which will setup nvm and 0.10 for you. | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
lloydbenson
Author
Contributor
|
||
- git clone https://github.com/fishin/ficion or npm install ficion | ||
- on a github account (generate a clientId and clientSecret to be used for github integration) - see https://auth0.com/docs/github-clientid. | ||
- Additional pieces of info I used are: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
#!/bin/bash | ||
|
||
IOJS_VERSION="2.5.0" | ||
NODEJS_VERSION="0.10.40" | ||
|
||
if [ ! -e ~/.nvm/nvm.sh ]; | ||
then | ||
echo "Installing nvm" | ||
curl https://raw.githubusercontent.com/creationix/nvm/v0.24.1/install.sh | bash | ||
else | ||
echo "Looking like you have nvm installed" | ||
echo "nvm installed" | ||
fi | ||
|
||
source ~/.nvm/nvm.sh | ||
|
||
NODE_VERSION=$(node --version) | ||
|
||
if [ "${NODE_VERSION}" != "v${IOJS_VERSION}" ] | ||
if [ "${NODE_VERSION}" != "v${NODEJS_VERSION}" ] | ||
then | ||
echo "Installing iojs" | ||
nvm install iojs-${IOJS_VERSION} | ||
echo "Installing node ${NODEJS_VERSION}" | ||
nvm install ${NODEJS_VERSION} | ||
else | ||
echo "Looks like you have iojs ${IOJS_VERSION} installed" | ||
echo "node ${NODEJS_VERSION} installed" | ||
fi |
Any reason not to just target 4.0.0 soon?