Próba uruchomieniaJak zmienić wersję Ruby dla Homebrew w macOS w Travis CI?
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi
w before_install
, ja skończyć z
/usr/local/Homebrew/Library/Homebrew/brew.rb:12:in \`<main>': Homebrew must be run under Ruby 2.3! (RuntimeError)
The command "if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi" failed and exited with 1 during .
Your build has been stopped.
/Users/travis/.travis/job_stages: line 166: shell_session_update: command not found
Zakładam więc, problem jest to, że ruby
jest od wersji 2.0, które potwierdzone ruby --version
. Najśmieszniejsze jest to, że moje kompilacje nagle przestały działać, bez żadnych zmian w .travis.yml.
Jak mogę zmienić wersje Ruby?
mogą być ważne, aby nie, że przed git clone
prowadzony jest uzyskać to:
$ rvm use
Warning! PATH is not properly set up, '/Users/travis/.rvm/gems/ruby-2.0.0-p648/bin' is not at first place,
usually this is caused by shell initialization files - check them for 'PATH=...' entries,
it might also help to re-add RVM to your dotfiles: 'rvm get stable --auto-dotfiles',
to fix temporarily in this shell session run: 'rvm use ruby-2.0.0-p648'.
Mam podobny problem z instalowaniem mutt. Czytam przez następujące, nie wiem, czy istotne https://discuss.circleci.com/t/homebrew-must-be-run-under-ruby-2-3-runtimeerror/17232/6 –
Wydaje się, że używasz rvm do zarządzania wersjami Rubiego. Czy to prawda? – zee