mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-01 18:38:39 +00:00
21 lines
561 B
YAML
21 lines
561 B
YAML
language: php
|
|
sudo: true
|
|
dist: trusty
|
|
php:
|
|
- '7.2'
|
|
- nightly
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- mysql-5.7-trusty
|
|
packages:
|
|
- mysql-server
|
|
- mysql-client
|
|
before_script:
|
|
- sudo mysql -e "use mysql; update user set authentication_string=PASSWORD('new_password') where User='root'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;"
|
|
- sudo mysql_upgrade
|
|
- sudo service mysql restart
|
|
- pecl install ast
|
|
- composer install
|
|
script:
|
|
- vendor/bin/phpunit --configuration tests/phpunit_no_coverage.xml |