12345678910111213141516171819202122232425262728293031323334353637 |
- notifications: false
- targets:
- centos-6:
- dependencies:
- - httpd
- - postgresql
- - postgresql-server
- - postgresql-devel
- centos-7:
- dependencies:
- - httpd
- - postgresql
- - postgresql-server
- - postgresql-devel
- debian-8:
- dependencies:
- - postgresql
- ubuntu-16.04:
- dependencies:
- - postgresql
- sles-12:
- dependencies:
- - postgresql
- before:
- - uname -a
- - ruby -v
- - env
- - echo "gem 'mysql2'" >> Gemfile.local
- - "cat Gemfile.lock"
- - contrib/cleanup.sh
- env:
- - RAILS_ENV=production
- - PORT=3000
- - RAILS_SERVE_STATIC_FILES=true
- services:
- - postgres
- after_install: contrib/pkgr-postinstall.sh
|