0
I have the following pipeline to run Fastlane tests on an Ios project:
kind: pipeline
name: default
steps:
- name: test
image: appleboy/drone-ssh
settings:
host: host.localhost
username: fulano
password: senha
port: 22
script:
- cd projetos/ios/
- git pull https://gitlab-ci-token:[email protected]
- fastlane test
The first two commands work, but when I run Fastlane test it says it does not know the command, Fastlane runs on mac normally, is set in the path.
Does anyone know what it can be?
if possible, complement the response with the full solution or example and not just part of the code
– Alexandre Cavaloti