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

in pipelines: cache global npm modules?

Johan Blomgren December 5, 2017
image: node:6.9.4
pipelines:
default:
-
step:
caches:
-
node
-
globalnode
- usernode
script: # Modify the commands below to build your repository.
-
npm install -g firebase-tools
-
npm install
-
npm run build
-
firebase deploy --token=$FIREBASE_TOKEN --project ***** --non-interactive
definitions:
caches:
globalnode: /usr/local/lib/node_modules
usernode: $HOME/.npm

firebase-tools is not cached, but it is in "globalnode".

am I doing this wrong? 

 

1 answer

0 votes
Jeroen De Raedt
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 8, 2017

Hi @Johan Blomgren,

the 'node' cache is one of the pre configured caches that we have set up. If you want to have additional caches like globalnode or usernode, you have to configure the paths there to those caches. 

More information is here in the 'Custom caches for other build tools and directories': https://confluence.atlassian.com/bitbucket/caching-dependencies-895552876.html 

Johan Blomgren December 9, 2017

I did read the documentation, and the posted config is based on my findings.

Does not my config define a "globalnode" and a "usernode" -cache?

Is this not the way to configure the paths?

definitions: 
caches:
globalnode: /usr/local/lib/node_modules
usernode: $HOME/.npm
Jeroen De Raedt
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 9, 2017

Sorry I missed that part. 

Currently environment variables in the directory paths are not supported so $HOME in the usernode path should be replaced with the actual file path. 

Can you check whether anything is cached inside the 'globalnode' cache (i.e. is just 'firebase-tools' not cached) ? 

If that would be the case, maybe there is an issue with symlinks (e.g. the firebase-tools directory could be a symlink in which case it might not be cached). 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events