.travis.yml (608B)
1 language: ruby 2 rvm: 3 - 2.6.0 4 5 before_script: 6 - chmod +x ./script/cibuild.sh 7 8 script: ./script/cibuild.sh 9 10 # branch whitelist, only for Github pages 11 # https://jekyllrb.com/docs/continuous-integration/travis-ci/ 12 branches: 13 only: 14 - master 15 - gh-pages # test gh-pages branch 16 - /pages-(.*)/ 17 18 env: 19 global: 20 - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speed up html-proofer install 21 22 sudo: false # route build to the container-based infrastructure for faster build 23 24 cache: bundler # caching bundler gem packages will speed up build 25 26 #before_install: 27 # - gem update --system 28 # - gem install bundler -v '< 2'