Skip to content

Commit

Permalink
Fix Appveyor builds
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasmullie committed Sep 21, 2017
1 parent fa0b1d4 commit ee15810
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions appveyor.yml
Expand Up @@ -18,12 +18,13 @@ install:
# install ssl
- IF NOT EXIST "C:\Program Files\OpenSSL" (cinst -y OpenSSL.Light)
# install php
- ps: Set-Service wuauserv -StartupType Manual # http://help.appveyor.com/discussions/problems/5616-not-able-to-build-due-to-problem-in-chocolateyinstallps1
- IF NOT EXIST C:\tools\php (cinst -y php)
- echo extension_dir=ext > C:\tools\php\php.ini
- echo extension=php_openssl.dll >> C:\tools\php\php.ini
- echo extension=php_mbstring.dll >> C:\tools\php\php.ini
- echo extension_dir=ext > C:\tools\php71\php.ini
- echo extension=php_openssl.dll >> C:\tools\php71\php.ini
- echo extension=php_mbstring.dll >> C:\tools\php71\php.ini
# install composer
- IF NOT EXIST vendor (php -r "readfile('https://getcomposer.org/installer');" | php & php composer.phar --prefer-source install)
- IF NOT EXIST vendor (php71 -r "readfile('https://getcomposer.org/installer');" | php71 & php71 composer.phar --prefer-source install)
- tests\convert_symlinks_to_windows_style.sh

test_script:
Expand Down

0 comments on commit ee15810

Please sign in to comment.