File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ build : false
2
+ shallow_clone : false
3
+ platform : ' x86'
4
+ clone_folder : c:\projects\symfony
5
+ environment :
6
+ global :
7
+ PHP : " C:/PHP"
8
+ init :
9
+ - SET PATH=C:\php\;%PATH%
10
+ install :
11
+ - cd c:\
12
+ - ps : Start-FileDownload 'http://ci.cakephp.org/php.zip'
13
+ - 7z x php.zip -oc:\php
14
+ - cd c:\php
15
+ - copy php.ini-production php.ini
16
+ - echo date.timezone="UTC" >> php.ini
17
+ - echo extension_dir=ext >> php.ini
18
+ - echo extension=php_openssl.dll >> php.ini
19
+ - echo extension=php_intl.dll >> php.ini
20
+ - echo extension=php_mbstring.dll >> php.ini
21
+ - echo extension=php_fileinfo.dll >> php.ini
22
+ - ps : Start-FileDownload 'https://getcomposer.org/composer.phar'
23
+ - cd C:\projects\symfony
24
+ - php c:\php\composer.phar install --prefer-dist --no-progress
25
+ - mkdir phpunit
26
+ - cd phpunit
27
+ - ps : Start-FileDownload 'https://github.com/sebastianbergmann/phpunit/archive/4.7.zip'
28
+ - 7z x 4.7.zip
29
+ - cd phpunit-4.7
30
+ - php c:\php\composer.phar remove --no-update symfony/yaml
31
+ - php c:\php\composer.phar install --prefer-dist --no-progress
32
+ test_script :
33
+ - cd C:\projects\symfony
34
+ - php phpunit/phpunit-4.7/phpunit
You can’t perform that action at this time.
0 commit comments