.pkgr.yml 680 B

12345678910111213141516171819202122232425262728293031323334353637
  1. notifications: false
  2. targets:
  3. centos-6:
  4. dependencies:
  5. - httpd
  6. - postgresql
  7. - postgresql-server
  8. - postgresql-devel
  9. centos-7:
  10. dependencies:
  11. - httpd
  12. - postgresql
  13. - postgresql-server
  14. - postgresql-devel
  15. debian-8:
  16. dependencies:
  17. - postgresql
  18. ubuntu-16.04:
  19. dependencies:
  20. - postgresql
  21. sles-12:
  22. dependencies:
  23. - postgresql
  24. before:
  25. - uname -a
  26. - ruby -v
  27. - env
  28. - echo "gem 'mysql2'" >> Gemfile.local
  29. - "cat Gemfile.lock"
  30. - contrib/cleanup.sh
  31. env:
  32. - RAILS_ENV=production
  33. - PORT=3000
  34. - RAILS_SERVE_STATIC_FILES=true
  35. services:
  36. - postgres
  37. after_install: contrib/pkgr-postinstall.sh