add basic schema test back to CI

master
Andrew Dolgov 7 years ago
parent e552bb0bf6
commit b3b2782358

@ -1,15 +1,16 @@
image: php:5.6
before_script:
- curl -o /usr/bin/phpmd -L http://static.phpmd.org/php/2.6.0/phpmd.phar
- chmod +x /usr/bin/phpmd
stages:
- test
jobs:
when: manual
stage: test
phpmd:
image: php:5.6
script:
- sh utils/gitlab-ci/phpmd.sh
schema:
image: fox/selenium-ci
when: manual
script:
- /etc/init.d/postgresql start
- /usr/local/sbin/init-database.sh
- sh ./utils/gitlab-ci/check-schema.sh

@ -0,0 +1,5 @@
#!/bin/sh
export PGPASSWORD=test
psql -h localhost -q -U test test < schema/ttrss_schema_pgsql.sql
Loading…
Cancel
Save