-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.appveyor.yml
More file actions
21 lines (19 loc) · 1.07 KB
/
.appveyor.yml
File metadata and controls
21 lines (19 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
install:
- ps: Set-Service wuauserv -StartupType "Automatic"; Start-Service wuauserv # weird magic for 'cinst php'
- cinst php --version 7.2.25 # symfony 2.8 doesn't work with php 7.3
- echo extension=C:\tools\php72\ext\php_openssl.dll >> C:\tools\php72\php.ini
- echo extension=C:\tools\php72\ext\php_mbstring.dll >> C:\tools\php72\php.ini
- echo extension=C:\tools\php72\ext\php_curl.dll >> C:\tools\php72\php.ini
- echo zend_extension=C:\tools\php72\ext\php_opcache.dll >> C:\tools\php72\php.ini
- set PATH=C:\tools\php72;%PATH%
- appveyor DownloadFile https://getcomposer.org/download/1.9.1/composer.phar
- php composer.phar i --working-dir=php-bin
- php composer.phar i --working-dir=php-project-for-tests --no-interaction
- php composer.phar i --working-dir=symfony-2.8-project --no-interaction
- php composer.phar i --working-dir=symfony-3.4-project --no-interaction
- php composer.phar i --working-dir=symfony-4.2-project --no-interaction
- ps: Install-Product node 12.4
- npm i
build: off
test_script:
- npm run test-windows