Squashed commit of the following: commit 1701a33d313d0969b061c8a87734395312045d9a Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Sat Mar 16 18:44:29 2019 +0000 Try and get security checker working again commit 2f81f28419304cad1678c6ee054eb3c8782fa082 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Sat Mar 16 18:38:41 2019 +0000 Make sure aaron's profile pic is saved commit 8a78aeec9c648a647fcb5d778b3003df5c3f653e Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Sat Mar 16 18:16:16 2019 +0000 Lets push out the new style as is commit a8015907d44370600ae3711605f96c4e3a637fca Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Mar 15 21:31:19 2019 +0000 More design work commit 12cb6e1bfc23ca9591e5348ebc6e49614d686722 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Sun Mar 10 16:00:30 2019 +0000 Updating CSS styles for design v2
70 lines
1.8 KiB
YAML
70 lines
1.8 KiB
YAML
language: php
|
|
|
|
sudo: false
|
|
dist: trusty
|
|
|
|
cache:
|
|
- apt
|
|
|
|
addons:
|
|
hosts:
|
|
- jmb.localhost
|
|
- jonnybarnes.localhost
|
|
postgresql: "9.6"
|
|
apt:
|
|
packages:
|
|
- nginx-full
|
|
- realpath
|
|
- postgresql-9.6-postgis-2.3
|
|
- imagemagick
|
|
#- google-chrome-stable
|
|
artifacts:
|
|
s3_region: "eu-west-1"
|
|
paths:
|
|
- $(ls tests/Browser/screenshots/*.png | tr "\n" ":")
|
|
- $(ls tests/Browser/console/*.log | tr "\n" ":")
|
|
- $(ls storage/logs/*.log | tr "\n" ":")
|
|
- $(ls /tmp/*.log | tr "\n" ":")
|
|
|
|
services:
|
|
- postgresql
|
|
|
|
env:
|
|
global:
|
|
- setup=basic
|
|
|
|
php:
|
|
- 7.2
|
|
- 7.3
|
|
|
|
before_install:
|
|
- printf "\n" | pecl install imagick
|
|
- cp .env.travis .env
|
|
- echo 'error_log = "/tmp/php.error.log"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
|
|
- psql -U travis -c 'create database travis_ci_test'
|
|
- psql -U travis -d travis_ci_test -c 'create extension postgis'
|
|
- travis_retry composer self-update --preview
|
|
- curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
|
|
|
|
install:
|
|
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-dist; fi
|
|
- if [[ $setup = 'stable' ]]; then travis_retry composer update --no-interaction --prefer-dist --prefer-stable; fi
|
|
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --no-interaction --prefer-dist --prefer-lowest --prefer-stable; fi
|
|
- travis/install-nginx.sh
|
|
- . $HOME/.nvm/nvm.sh
|
|
- nvm install stable
|
|
- nvm use stable
|
|
- npm i puppeteer
|
|
|
|
before_script:
|
|
- php artisan key:generate
|
|
- php artisan migrate
|
|
- php artisan db:seed
|
|
#- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9515 http://localhost:8000 &
|
|
#- sleep 5
|
|
|
|
script:
|
|
- php vendor/bin/phpunit
|
|
- php phpcs.phar
|
|
#- php artisan dusk
|
|
- php vendor/bin/security-checker security:check
|