forked from php-school/php-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
28 lines (25 loc) · 728 Bytes
/
appveyor.yml
File metadata and controls
28 lines (25 loc) · 728 Bytes
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
build: false
platform: 'x86'
clone_folder: C:\projects\php-workshop
branches:
except:
- gh-pages
init:
- SET COMPOSER_NO_INTERACTION=1
install:
- SET PATH=C:\Program Files\OpenSSL;%PATH%
- cinst php
- cd c:\tools\php
- copy php.ini-production php.ini
- echo date.timezone="UTC" >> php.ini
- echo extension_dir=ext >> php.ini
- echo extension=php_openssl.dll >> php.ini
- echo extension=php_mbstring.dll >> php.ini
- SET PATH=C:\tools\php;%PATH%
- cd C:\projects\php-workshop
- php -r "readfile('http://getcomposer.org/installer');" | php
- php composer.phar install --prefer-source --no-progress
test_script:
- ps: cd C:\projects\php-workshop
- ps: gl
- vendor\bin\phpunit.bat