1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/.travis.yml

75 lines
2.0 KiB
YAML
Raw Normal View History

2016-02-17 16:47:46 +01:00
language: php
2016-02-18 12:36:47 +01:00
sudo: false
2016-02-17 16:47:46 +01:00
php:
2016-02-18 10:13:35 +01:00
- 5.5
# - 5.6
2016-02-17 17:00:07 +01:00
# - 7.0
# - hhvm
2016-02-17 16:47:46 +01:00
2016-02-18 11:20:43 +01:00
addons:
hosts:
2016-02-18 11:26:21 +01:00
- ninja.dev
2016-02-18 11:20:43 +01:00
2016-02-17 16:47:46 +01:00
cache:
directories:
- vendor
- $HOME/.composer/cache
env:
global:
- COMPOSER_DISCARD_CHANGES=true
- COMPOSER_NO_INTERACTION=1
- COMPOSER_DISABLE_XDEBUG_WARN=1
before_install:
# set GitHub token and update composer
- if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
- composer self-update && composer -V
install:
# install Composer dependencies
2016-02-17 20:28:36 +01:00
- rm composer.lock
2016-02-17 20:34:29 +01:00
# these providers require referencing git commit's which cause Travis to fail
2016-02-17 18:46:10 +01:00
- sed -i '/mollie/d' composer.json
- sed -i '/2checkout/d' composer.json
2016-02-17 17:49:40 +01:00
- travis_retry composer install --prefer-dist;
2016-02-17 16:47:46 +01:00
before_script:
# copy configuration files
2016-02-17 20:17:06 +01:00
- cp .env.example .env
2016-02-17 16:47:46 +01:00
- cp tests/_bootstrap.php.default tests/_bootstrap.php
2016-02-17 21:17:55 +01:00
- php artisan key:generate --no-interaction
2016-02-17 21:32:26 +01:00
- sed -i 's/APP_ENV=production/APP_ENV=development/g' .env
2016-02-17 21:49:34 +01:00
- sed -i 's/APP_DEBUG=false/APP_DEBUG=true/g' .env
2016-02-17 16:47:46 +01:00
# create the database and user
- mysql -u root -e "create database IF NOT EXISTS ninja;"
- mysql -u root -e "GRANT ALL PRIVILEGES ON ninja.* To 'ninja'@'localhost' IDENTIFIED BY 'ninja'; FLUSH PRIVILEGES;"
# migrate and seed the database
- php artisan migrate --no-interaction
- php artisan db:seed --no-interaction # default seed
- php artisan db:seed --no-interaction --class=UserTableSeeder # development seed
# Start webserver on ninja.dev:8000
2016-02-18 11:26:21 +01:00
- php artisan serve --host=ninja.dev --port=8000 & # '&' allows to run in background
2016-02-17 16:47:46 +01:00
# Start PhantomJS
2016-02-18 12:36:47 +01:00
- phantomjs --webdriver=4444 & # '&' allows to run in background
2016-02-17 16:47:46 +01:00
# Give it some time to start
- sleep 5
2016-02-18 10:21:23 +01:00
# Make sure the app is up-to-date
2016-02-18 11:26:21 +01:00
- curl -L http://ninja.dev:8000/update
2016-02-17 16:47:46 +01:00
script:
- php ./vendor/codeception/codeception/codecept run --html --debug
2016-02-17 21:42:31 +01:00
after_script:
2016-02-18 12:36:47 +01:00
#- cat tests/_output/*
#- cat /var/log/apache2/access.log
#- cat /var/log/apache2/error.log
2016-02-17 21:42:31 +01:00
- cat storage/logs/laravel.log
2016-02-17 16:47:46 +01:00
notifications:
email:
on_success: never
on_failure: change