-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
build: off | ||
cache: | ||
- c:\php -> appveyor.yml | ||
- '%LOCALAPPDATA%\Composer\files -> appveyor.yml' | ||
|
||
clone_folder: c:\projects\database | ||
|
||
services: | ||
- mssql2008r2sp2 | ||
- mssql2012sp1 | ||
- mssql2014 | ||
- mysql | ||
|
||
init: | ||
- SET PATH=c:\php;%PATH% | ||
- SET PHP=1 | ||
- SET ANSICON=121x90 (121x90) | ||
|
||
install: | ||
# Install PHP | ||
- IF EXIST c:\php (SET PHP=0) ELSE (mkdir c:\php) | ||
- IF %PHP%==1 cd c:\php | ||
- IF %PHP%==1 appveyor DownloadFile http://windows.php.net/downloads/releases/archives/php-5.6.14-Win32-VC11-x86.zip | ||
- IF %PHP%==1 7z x php-5.6.14-Win32-VC11-x86.zip >nul | ||
- IF %PHP%==1 echo extension_dir=ext >> php.ini | ||
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini | ||
- IF %PHP%==1 appveyor DownloadFile https://files.nette.org/misc/php-sqlsrv.zip | ||
- IF %PHP%==1 7z x php-sqlsrv.zip >nul | ||
- IF %PHP%==1 copy SQLSRV\php_pdo_sqlsrv_56_ts.dll ext\php_pdo_sqlsrv_ts.dll | ||
- IF %PHP%==1 del /Q *.zip | ||
- cd c:\projects\database | ||
|
||
# Install Nette Tester | ||
- appveyor DownloadFile https://getcomposer.org/composer.phar | ||
- php composer.phar install --prefer-dist --no-interaction --no-progress | ||
|
||
# Create databases.ini | ||
- copy tests\databases.appveyor.ini tests\Database\databases.ini | ||
|
||
test_script: | ||
- vendor\bin\tester tests -s -p php -c tests\php-win.ini |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[mysql] | ||
dsn = "mysql:host=127.0.0.1" | ||
user = root | ||
password = "Password12!" | ||
|
||
[sqlite] | ||
dsn = "sqlite::memory:" | ||
|
||
[sqlsrv 2008] | ||
dsn = "sqlsrv:Server=(local)\SQL2008R2SP2;Database=master" | ||
user = sa | ||
password = "Password12!" | ||
|
||
[sqlsrv 2012] | ||
dsn = "sqlsrv:Server=(local)\SQL2012SP1;Database=master" | ||
user = sa | ||
password = "Password12!" | ||
|
||
; NDB does not differentiate between 2012 and 2014 | ||
;[sqlsrv 2014] | ||
;dsn = "sqlsrv:Server=(local)\SQL2014;Database=master" | ||
;user = sa | ||
;password = "Password12!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters