Hey, all. I’m trying to use Fastlane on Circle with my android builds. I thought this would be pretty easy - just make sure fastlane is up-to-date and invoke the command. But alas, no luck. The build is failing with “bash: line 1: fastlane: command not found”
To test this out, I made a really simple tweak to my circle.yml file. It now does the following:
dependencies:
pre:
# Make sure we have fastlane installed
- sudo gem update fastlane
# Test lanes
- fastlane lanes
But it still fails. I’ve tried manually installing fastlane via SSH (sudo gem install -V fastlane), and I get a ton of output followed by:
ERROR: Error installing fastlane:
net-ssh requires Ruby version >= 2.0.
I thought the circle machines had fastlane installed already. Any idea what I’m missing here?