-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug #111 add appveyor configuration (Jan Christoph Beyer)
This PR was squashed before being merged into the 1.x-dev branch. Discussion ---------- add appveyor configuration #110 This is an inital appveyor config using php 7.4. Feedback is welcome. Commits ------- 82253f2 * fix os related tests e066d67 * add appveyor configuration
- Loading branch information
Showing
5 changed files
with
31 additions
and
10 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,22 @@ | ||
build: false | ||
platform: x86 | ||
clone_folder: c:\projects\elao\php-enums | ||
|
||
install: | ||
- ps: Set-Service wuauserv -StartupType Manual | ||
- cinst -y php composer | ||
- refreshenv | ||
- cd c:\tools\php74 | ||
- copy php.ini-production php.ini /Y | ||
- echo extension_dir=ext >> php.ini | ||
- echo extension=php_openssl.dll >> php.ini | ||
- echo extension=php_intl.dll >> php.ini | ||
- echo extension=php_mbstring.dll >> php.ini | ||
- echo extension=php_pdo_sqlite.dll >> php.ini | ||
- echo memory_limit=-1 >> php.ini | ||
- cd %APPVEYOR_BUILD_FOLDER% | ||
- composer install --no-progress --no-interaction | ||
|
||
test_script: | ||
- cd %APPVEYOR_BUILD_FOLDER% | ||
- vendor\bin\simple-phpunit.bat |
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
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