Jerome Lacoste

Results 94 comments of Jerome Lacoste

@aparajita here's another [discussion](https://github.com/fastlane/fastlane/discussions/18391) on the topic: > I just noticed that an API key with a Developer Role is not allowed to create a new version of the app....

Here's one example of the issue I am trying to uncover being triggered. https://app.circleci.com/pipelines/github/fastlane/fastlane?branch=pull%2F21799 https://app.circleci.com/pipelines/github/fastlane/fastlane/6110/workflows/6f6fa7ff-6f2e-4fc1-8664-bb17b55b0a15/jobs/95892/tests#failed-test-0 The current PR is just trying to show the issue but hits a `ulimit` issue....

The following script fails on some of my environments ```ruby require 'pty' require 'expect' def run_command(command) output = [] PTY.spawn(command) do |command_stdout, command_stdin, pid| begin command_stdout.each do |l| line =...

I've reported the issue to Ruby. https://bugs.ruby-lang.org/issues/20206. Waiting for some feedback.

I've found out the following running `ruby test_pty.rb "echo 'foo'"` or `ruby test_pty.rb "stdbuf -i0 -o0 -e0 echo foo"` doesn't reproduce the failure. So this could very much be caused...

It might be a setup / keychain issue. Your logs say ``` [20:48:03]: There are no local code signing identities found. You can run security find-identity -v -p codesigning fastlane_tmp_keychain...

Have you tried 1. running fastlane with `--verbose` 2. using `GIT_SSH_COMMAND="ssh -vvv" fastlane ...` 3. using `ssh-add -K your-path-to.key` Finally, 1. are you connecting to the macbooks remotely? 2. Is...

It looks like fastlane binary final location moved and/or the PATH wasn't reloaded. Could you run `fastlane env` to see how fastlane is configured? In the mean time I suggest...

> Also, on unrelated note, (probably I should create separate issue) fastlane does update by invoking `brew upgrade` (update _all_ packages and not just the fastlane), causing undesirable side effects...