phpvms/.travis.yml
2017-12-13 17:10:43 -06:00

34 lines
794 B
YAML

language: php
php:
- '7.0'
- '7.1'
- '7.2'
services:
- mysql
addons:
ssh_known_hosts: phpvms.net
before_install:
- mysql -e 'CREATE DATABASE IF NOT EXISTS phpvms;'
before_script:
- cp .env.travis .env
- composer install --no-interaction
script:
- php artisan database:create --reset
- php artisan migrate:refresh --seed
- cp tests/phpunit.travis.xml phpunit.xml
- vendor/bin/phpunit --debug --verbose
after_failure:
- cat storage/logs/*.log
before_deploy:
- openssl aes-256-cbc -K $encrypted_6ae8173eef05_key -iv $encrypted_6ae8173eef05_iv -in .travis/deploy_rsa.enc -out /tmp/deploy_rsa -d
- eval "$(ssh-agent -s)"
- chmod 600 /tmp/deploy_rsa
- ssh-add /tmp/deploy_rsa
deploy:
provider: script
skip_cleanup: true
script: make deploy-package
on:
branch: master
php: '7.0'