1

I am able to configure Fastlane locally and working well with terminal, but when I am trying to run it with Jenkins(I have configured Jenkins locally on my macbook) it is failing every-time(i have installed ruby 2.5.0 again). Any help on the same would be highly appreciated.

I am attaching SS for your reference.

enter image description here

Vadim Kotov
  • 7,766
  • 8
  • 46
  • 61
Alok Chandra
  • 1,867
  • 1
  • 20
  • 45

2 Answers2

0

Jenkins run its build scripts using specified user 'jenkins'. You might want to check if 'jenkins' user had installed requires dependencies to run fastlane, for e.g ruby ...

Duy Nguyen
  • 216
  • 1
  • 5
0

Have you set up your PATH in Jenkins? In the configuration of your node, in the environment variables section, you'll want to include /usr/local/bin/ with Jenkins's PATH by entering /usr/local/bin/:$PATH.

rpecka
  • 1,076
  • 5
  • 17