Я протестировал Amazon Linux 2018.03
в своей кулинарной книге шеф-повара, и она проходит без проблем.Я также запускаю travis-ci локально через докер в соответствии с документацией Travis CI здесь , и это также проходит без проблем.Однако, когда он работает в службе 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.
Вот ссылка на репо: https://github.com/asdf-chef/asdf
Вот ссылка наошибка сборки: https://travis -ci.org / asdf-chef / asdf / jobs / 443278283
Вот файл .travis.yml:
sudo: false
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=test-amazon-201803
- INSTANCE=test-centos-7
- INSTANCE=test-fedora-28
- INSTANCE=test-ubuntu-1804
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
after_script:
- docker images
- docker ps -a
- cat .kitchen/logs/kitchen.log
matrix:
include:
- script:
- delivery local verify
env: UNIT_AND_LINT=1
Любая помощь будет оценена.Спасибо!