Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unmet requirements: gulp exists

Tags:

gulp

teamcity

I am currently doing a TeamCity build using the Gulp Runner and using the System-wide gulp setting.

The agents I have fail to meet the requirement

Unmet requirements: gulp exists

Where is it looking for gulp?

I have tried npm install -g gulp and installed gulp globally but I am not having much luck.

How do I meet the build agents requirement for gulp?

like image 248
Andrew Avatar asked Oct 31 '22 13:10

Andrew


1 Answers

I had the same problem. Try to add this line

NODE_PATH=/usr/lib/node_modules/

to end of buildAgent.properties. This shows to teamcity agent that you have gulp and all needed nodejs's modules

like image 73
Ruslan Sennov Avatar answered Jan 04 '23 15:01

Ruslan Sennov