зеркало из https://github.com/github/ruby-gpgme.git
34 строки
652 B
YAML
34 строки
652 B
YAML
language: ruby
|
|
|
|
rvm:
|
|
- 2.6
|
|
- 2.5
|
|
- 2.4
|
|
- 2.3
|
|
- 2.2
|
|
- 2.1
|
|
- 2.0
|
|
- 1.9.3
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- rvm: 2.0
|
|
- rvm: 1.9.3
|
|
|
|
before_install:
|
|
# this is a fix to get rng-tools to work in travis-ci
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install --yes rng-tools
|
|
- sudo rm -f /dev/random
|
|
- sudo mknod -m 0666 /dev/random c 1 9
|
|
- echo HRNGDEVICE=/dev/urandom | sudo tee /etc/default/rng-tools
|
|
- sudo /etc/init.d/rng-tools restart
|
|
- gpg --version
|
|
- gpg2 --version
|
|
- gpgconf --list-options gpg-agent
|
|
|
|
script: travis_wait bundle exec rake TESTOPTS="-v"
|
|
|
|
after_failure:
|
|
"find tmp -name compile.log -exec cat {} \\;"
|