Travis CI завершает сборку для флаттера с ошибкой - PullRequest
0 голосов
/ 06 апреля 2020

Я пытаюсь создать приложение для флаттера уровня выпуска с Travis CI, и оно завершается со следующей ошибкой.

No output has been received in the last 10m0s, this potentially indicates a stalled build or something wrong with the build itself.
Check the details on how to adjust your build configuration on: https://docs.travis-ci.com/user/common-build-problems/#Build-times-out-because-no-output-was-received
The build has been terminated.

вот мой файл .travis.yml

os: osx
platform: ios
language: generic
osx_image: xcode11.3
before_script:
  - gem install six
  - gem install cocoapods
  - brew update
  - brew install --HEAD libimobiledevice
  - brew install ideviceinstaller
  - brew install ios-deploy
  - git clone https://github.com/flutter/flutter.git -b stable --depth 1
script:
  - ./flutter/bin/flutter -v build ios --no-codesign

cache:
  cocoapods: true
  directories:
    - $HOME/.pub-cache
...