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

Commit 6c89d5d

Browse files
committed
Move everything outside of Kanboard
0 parents  commit 6c89d5d

45 files changed

Lines changed: 1621 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.zip

.travis.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
language: php
2+
sudo: false
3+
4+
php:
5+
- 7.1
6+
- 7.0
7+
- 5.6
8+
- 5.5
9+
- 5.4
10+
- 5.3
11+
12+
env:
13+
global:
14+
- PLUGIN=Gantt
15+
- KANBOARD_REPO=https://github.com/kanboard/kanboard.git
16+
matrix:
17+
- DB=sqlite
18+
- DB=mysql
19+
- DB=postgres
20+
21+
matrix:
22+
fast_finish: true
23+
24+
install:
25+
- git clone --depth 1 $KANBOARD_REPO
26+
- ln -s $TRAVIS_BUILD_DIR kanboard/plugins/$PLUGIN
27+
28+
before_script:
29+
- cd kanboard
30+
- phpenv config-add tests/php.ini
31+
- composer install
32+
- ls -la plugins/
33+
34+
script:
35+
- phpunit -c tests/units.$DB.xml plugins/$PLUGIN/Test/

0 commit comments

Comments
 (0)