This repository was archived by the owner on Sep 10, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +34
-0
lines changed Expand file tree Collapse file tree 4 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ language : php
2
+
3
+ php :
4
+ - 5.4
5
+ - 5.5
6
+ - 5.6
7
+
8
+ before_script :
9
+ - cp tests/travis/mysql.ini tests/configs/mysql.ini && cp tests/travis/pgsql.ini tests/configs/pgsql.ini
10
+ - mysql -u root -e 'create database midas_test;'
11
+ - psql -U postgres -c 'create database midas_test;'
12
+
13
+ script :
14
+ - mkdir _test && cd _test
15
+ - cmake ..
16
+ - ctest -j2 -V .
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ Midas Platform
5
5
6
6
_ Version 3.x_
7
7
8
+ [ ![ Build Status] ( https://travis-ci.org/midasplatform/Midas.png?branch=master )] ( https://travis-ci.org/midasplatform/Midas )
9
+
8
10
Midas Platform is an open-source toolkit that enables the rapid creation of
9
11
tailored, web-enabled data storage. Designed to meet the needs of advanced
10
12
data-centric computing, Midas Platform addresses the growing challenge of large
Original file line number Diff line number Diff line change
1
+ [testing]
2
+ database.type = pdo
3
+ database.adapter = PDO_MYSQL
4
+ database.params.host = 127.0.0.1
5
+ database.params.port = 3306
6
+ database.params.username = root
7
+ database.params.password =
8
+ database.params.dbname = midas_test
Original file line number Diff line number Diff line change
1
+ [testing]
2
+ database.type = pdo
3
+ database.adapter = PDO_PGSQL
4
+ database.params.host = 127.0.0.1
5
+ database.params.port = 5432
6
+ database.params.username = postgres
7
+ database.params.password =
8
+ database.params.dbname = midas_test
You can’t perform that action at this time.
0 commit comments