Skip to content
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.

Commit

Permalink
Move everything outside of Kanboard
Browse files Browse the repository at this point in the history
  • Loading branch information
fguillot committed Apr 1, 2017
0 parents commit 6c89d5d
Show file tree
Hide file tree
Showing 45 changed files with 1,621 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.zip
35 changes: 35 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
language: php
sudo: false

php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3

env:
global:
- PLUGIN=Gantt
- KANBOARD_REPO=https://github.com/kanboard/kanboard.git
matrix:
- DB=sqlite
- DB=mysql
- DB=postgres

matrix:
fast_finish: true

install:
- git clone --depth 1 $KANBOARD_REPO
- ln -s $TRAVIS_BUILD_DIR kanboard/plugins/$PLUGIN

before_script:
- cd kanboard
- phpenv config-add tests/php.ini
- composer install
- ls -la plugins/

script:
- phpunit -c tests/units.$DB.xml plugins/$PLUGIN/Test/
Loading

0 comments on commit 6c89d5d

Please sign in to comment.