FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ezsql/unsupported/.travis.yml at v5 · ezSQL/ezsql · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
ezSQL
/
ezsql
Public
Notifications
You must be signed in to change notification settings
Fork
280
Star
866
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
ezsql
/
unsupported
/
.travis.yml
Copy path
More file actions
More file actions
Latest commit
History
History
History
50 lines (42 loc) · 1.41 KB
Breadcrumbs
ezsql
/
unsupported
/
.travis.yml
Copy path
File metadata and controls
50 lines (42 loc) · 1.41 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
language
:
php
#
Versions of PHP you want your project run with.
php
:
-
5.6
-
7.0
-
7.1
-
7.2
env
:
-
MYSQL_HOST=127.0.0.1 MYSQL_USER=root
services
:
-
mysql
-
postgresql
-
before_install
:
-
sudo add-apt-repository ppa:cubrid/cubrid -y
-
sudo apt-get update -q
-
sudo apt-get install cubrid php7-cubrid -y
#
Commands to be run before your environment runs.
before_script
:
-
composer self-update
-
composer require php-coveralls/php-coveralls
-
mysql -e 'CREATE DATABASE IF NOT EXISTS ez_test;'
-
mysql -e 'GRANT ALL PRIVILEGES ON ez_test.* TO ez_test@localhost;'
-
mysql -e "SET PASSWORD FOR 'ez_test'@'localhost' = PASSWORD('ezTest')"
-
psql -c 'CREATE DATABASE ez_test;' -U postgres
-
psql -c "CREATE USER ez_test WITH PASSWORD 'ezTest';" -U postgres
-
cubrid service start
-
cubrid createdb --db-volume-size=128M --db-page-size=16K --log-volume-size=128M ez_test en_US
-
cubrid server start ez_test
-
csql ez_test -u dba -c "CREATE USER ez_test PASSWORD 'ezTest' MEMBERS dba"
after_success
:
-
bash <(curl -s https://codecov.io/bash)
#
Commands you want to run that will verify your build.
script
:
-
phpunit --coverage-clover=coverage.xml
#
allow_failures: Allow this build to fail under the specified environments.
#
fast_finish: If your build fails do not continue trying to build, just stop.
matrix
:
allow_failures
:
-
php
:
5.6
-
php
:
7.2
env
:
KEY=VALUE
fast_finish
:
true
Back
|
FazBrowse Home
|
New Git URL