Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Can Bamboo cache npm node_modules to speed up builds?

Deleted user November 8, 2018

I'm trying to figure out how to speed up Bamboo builds that involve npm. From the logs, I can see that `npm install` takes roughly 8 minutes...

simple	08-Nov-2018 08:00:30	Starting task 'Install' of type 'com.atlassian.bamboo.plugins.bamboo-nodejs-plugin:task.builder.npm'
command 08-Nov-2018 08:00:30 Beginning to execute external process for build '...'\n ... running command line: \n/usr/bin/node /usr/bin/npm install\n ...
...
...
...
simple 08-Nov-2018 08:07:50 Finished task 'Install' with result: Success

Is Bamboo caching the `node_modules` directory after `npm install`? Is it possible to have Bamboo cache `node_modules` across multiple builds?

This is what job configuration looks like:

Screen Shot 2018-11-08 at 10.11.06 AM.png

1 answer

1 vote
Chris Berry
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 8, 2018

Hi Hristo,

If you specify a Node install task it will always  reinstall the files.

If you do not clean the build directory before and after the job then you could use a ScriptTask instead. The below would only run the install if the node_module directory doesn't already exist.

[ ! -d "node_modules" ] && npm install

You would need to have an additional ScriptTask to perform any necessary cleaning.

thanks

Chris

 

Atlassian support- Bamboo 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events