2019-10-29 12:42:43 +03:00
|
|
|
language: generic
|
|
|
|
|
|
|
|
dist: trusty
|
|
|
|
|
|
|
|
env:
|
2020-04-29 19:48:33 +03:00
|
|
|
# certificates (default tls if onlyoffice not exists)
|
|
|
|
- config: certs.yml
|
|
|
|
ssl: true
|
|
|
|
|
|
|
|
# certificates (default onlyoffice if exists)
|
|
|
|
- config: certs.yml
|
|
|
|
ssl: true
|
|
|
|
private_key: onlyoffice.key
|
|
|
|
certificate_request: onlyoffice.csr
|
|
|
|
certificate: onlyoffice.crt
|
|
|
|
|
|
|
|
# custom certificates
|
|
|
|
- config: certs-customized.yml
|
|
|
|
ssl: true
|
|
|
|
private_key: mycert.key
|
|
|
|
certificate_request: mycert.csr
|
|
|
|
certificate: mycert.crt
|
|
|
|
SSL_CERTIFICATE_PATH: /var/www/onlyoffice/Data/certs/mycert.crt
|
|
|
|
SSL_KEY_PATH: /var/www/onlyoffice/Data/certs/mycert.key
|
|
|
|
|
2019-10-29 12:42:43 +03:00
|
|
|
# postgresql
|
|
|
|
- config: postgres.yml
|
|
|
|
|
|
|
|
# custom values
|
|
|
|
- config: postgres.yml
|
|
|
|
DB_NAME: mydb
|
|
|
|
DB_USER: myuser
|
|
|
|
DB_PWD: password
|
|
|
|
POSTGRES_DB: mydb
|
|
|
|
POSTGRES_USER: myuser
|
|
|
|
|
|
|
|
# deprecated variables
|
|
|
|
- config: postgres-old.yml
|
|
|
|
|
|
|
|
# mysql
|
|
|
|
- config: mysql.yml
|
|
|
|
|
2020-03-16 16:20:36 +03:00
|
|
|
# mariadb
|
|
|
|
- config: mariadb.yml
|
|
|
|
|
2019-10-29 12:42:43 +03:00
|
|
|
# activemq
|
|
|
|
- config: activemq.yml
|
2019-12-23 12:27:47 +03:00
|
|
|
|
|
|
|
# rabbitmq
|
|
|
|
- config: rabbitmq.yml
|
|
|
|
|
|
|
|
# rabbitmq old variables
|
|
|
|
- config: rabbitmq-old.yml
|
2019-10-29 12:42:43 +03:00
|
|
|
|
2019-12-23 15:59:14 +03:00
|
|
|
# redis
|
|
|
|
- config: redis.yml
|
|
|
|
|
2019-10-29 12:42:43 +03:00
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
|
|
|
|
script:
|
|
|
|
# Go to tests dir
|
|
|
|
- cd ${PWD}/tests
|
|
|
|
|
|
|
|
# Run test.
|
|
|
|
- ./test.sh
|