Differences between revisions 5 and 6
Revision 5 as of 2021-10-18 00:30:15
Size: 1215
Editor: PieterSmit
Comment:
Revision 6 as of 2021-10-18 01:06:59
Size: 1626
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 28: Line 28:
nodejs_version="12.16.2"
echo "# use nvm to switch to requested node.js verion ${nodejs_version} ..."
nvm use ${nodejs_version} || nvm install ${notejs_version}
echo "# nodejs_version=$(printenv | grep nodejs_version)"

e
cho "# use nvm to switch to requested node.js version [${bamboo_nodejs_version}] ..."
nvm use ${bamboo_nodejs_version} || nvm install ${bamboo_notejs_version}
Line 38: Line 39:

}}}
 * build
{{{
#!/bin/bash
echo "# source .bash_profile to install nvm as bash function ..."
source ~/.bash_profile

nvm use ${bamboo_nodejs_version}
echo "# Using node: $(node --version)"
echo "# Using npm: $(npm --version)"
echo "PATH = $PATH"

yarn install
bin/pre-test-build ${bamboo.buildNumber}
yarn build --configuration=prod

Node JS

  • javascript, serverside, runs on V8-Google javascript engine.

NPM

Setting up nodejs in build environment, CI

  • Here we source .bash_profile, that sources nvm, as bash function.
    • Requires nvm installed and loaded by .bash_profile -> .bashrc

    • Then we use nvm, to select the nodejs version, and then we install yarn

echo "# source .bash_profile to install nvm as bash function ..."
source ~/.bash_profile

# Exit on any shell error
set -e

echo "# nodejs_version=$(printenv | grep nodejs_version)"

echo "# use nvm to switch to requested node.js version [${bamboo_nodejs_version}] ..."
nvm use ${bamboo_nodejs_version} || nvm install ${bamboo_notejs_version}

echo "# Using node: $(node --version)"
echo "# Using npm: $(npm --version)"
echo "PATH = $PATH"

npm ls -g yarn || npm install -g yarn
echo "# Using yarn: $(yarn --version)"
  • build

echo "# source .bash_profile to install nvm as bash function ..."
source ~/.bash_profile

nvm use ${bamboo_nodejs_version}
echo "# Using node: $(node --version)"
echo "# Using npm: $(npm --version)"
echo "PATH = $PATH"

yarn install
bin/pre-test-build ${bamboo.buildNumber}
yarn build --configuration=prod

...


CategoryDevelopement

nodejs (last edited 2023-10-02 09:22:10 by PieterSmit)