.travis.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. language: bash
  2. sudo: required
  3. services:
  4. - docker
  5. env:
  6. matrix:
  7. - HUGO_VERSION=0.20.2
  8. - PHP_VERSION=5.6 BUILD_SERVICE=workspace
  9. - PHP_VERSION=7.0 BUILD_SERVICE=workspace
  10. - PHP_VERSION=7.1 BUILD_SERVICE=workspace
  11. - PHP_VERSION=7.2 BUILD_SERVICE=workspace
  12. - PHP_VERSION=7.3 BUILD_SERVICE=workspace
  13. - PHP_VERSION=5.6 BUILD_SERVICE=php-fpm
  14. - PHP_VERSION=7.0 BUILD_SERVICE=php-fpm
  15. - PHP_VERSION=7.1 BUILD_SERVICE=php-fpm
  16. - PHP_VERSION=7.2 BUILD_SERVICE=php-fpm
  17. - PHP_VERSION=7.3 BUILD_SERVICE=php-fpm
  18. - PHP_VERSION=hhvm BUILD_SERVICE=hhvm
  19. # - PHP_VERSION=5.6 BUILD_SERVICE=php-worker
  20. - PHP_VERSION=7.0 BUILD_SERVICE=php-worker
  21. - PHP_VERSION=7.1 BUILD_SERVICE=php-worker
  22. - PHP_VERSION=7.2 BUILD_SERVICE=php-worker
  23. - PHP_VERSION=7.3 BUILD_SERVICE=php-worker
  24. - PHP_VERSION=NA BUILD_SERVICE=solr
  25. - PHP_VERSION=NA BUILD_SERVICE="mssql rethinkdb aerospike"
  26. - PHP_VERSION=NA BUILD_SERVICE="blackfire minio percona nginx caddy apache2 mysql mariadb postgres postgres-postgis neo4j mongo redis cassandra"
  27. - PHP_VERSION=NA BUILD_SERVICE="adminer phpmyadmin pgadmin"
  28. - PHP_VERSION=NA BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 haproxy"
  29. - PHP_VERSION=NA BUILD_SERVICE="kibana grafana laravel-echo-server"
  30. - PHP_VERSION=NA BUILD_SERVICE="ipython-controller manticore"
  31. # - PHP_VERSION=NA BUILD_SERVICE="aws"
  32. # Installing a newer Docker version
  33. before_install:
  34. - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
  35. - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
  36. - sudo apt-get update
  37. - sudo apt-get -y install docker-ce
  38. - docker version
  39. script: ./travis-build.sh
  40. deploy:
  41. provider: pages
  42. skip_cleanup: true
  43. local_dir: docs
  44. github_token: $GITHUB_TOKEN
  45. on:
  46. branch: master
  47. condition: -n "${HUGO_VERSION}"
  48. notifications:
  49. email: false