-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from antalaron/appveyor
Appveyor
- Loading branch information
Showing
3 changed files
with
80 additions
and
0 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,9 @@ | ||
| Q | A | ||
| ---------------- | ----- | ||
| Bug report? | yes/no | ||
| Feature request? | yes/no | ||
| BC break report? | yes/no | ||
|
||
<!-- | ||
- Replace this comment by the description of your issue. | ||
--> |
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,12 @@ | ||
| Q | A | ||
| ------------- | --- | ||
| Bug fix? | yes/no | ||
| New feature? | yes/no | ||
| BC break | yes/no | ||
| Tests passed? | yes/no | ||
| Fixed tickets | #... <!-- #-prefixed issue number(s), if any --> | ||
| License | MIT | ||
|
||
<!-- | ||
Add description of what your PR is solving. | ||
--> |
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,59 @@ | ||
build: false | ||
|
||
platform: | ||
- x64 | ||
|
||
clone_folder: c:\projects\mb-similar-text | ||
|
||
environment: | ||
matrix: | ||
- dependencies: lowest | ||
php_ver_target: 5.6.30 | ||
- dependencies: highest | ||
php_ver_target: 5.6.30 | ||
- dependencies: lowest | ||
php_ver_target: 7.0.18 | ||
- dependencies: highest | ||
php_ver_target: 7.0.18 | ||
- dependencies: lowest | ||
php_ver_target: 7.1.4 | ||
- dependencies: highest | ||
php_ver_target: 7.1.4 | ||
|
||
## Cache composer, chocolatey and php bits | ||
cache: | ||
- '%LOCALAPPDATA%\Composer\files -> composer.lock' | ||
- composer.phar | ||
# Cache chocolatey packages | ||
- C:\ProgramData\chocolatey\bin -> .appveyor.yml | ||
- C:\ProgramData\chocolatey\lib -> .appveyor.yml | ||
# Cache php install | ||
- c:\tools\php -> .appveyor.yml | ||
|
||
init: | ||
- SET PATH=C:\Program Files\OpenSSL;c:\tools\php;%PATH% | ||
- SET COMPOSER_NO_INTERACTION=1 | ||
- SET PHP=1 # This var is connected to PHP install cache | ||
|
||
install: | ||
- IF EXIST c:\tools\php (SET PHP=0) # Checks for the PHP install being cached | ||
- ps: appveyor-retry cinst --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version ((choco search php --exact --all-versions -r | select-string -pattern $env:php_ver_target | sort { [version]($_ -split '\|' | select -last 1) } -Descending | Select-Object -first 1) -replace '[php|]','') | ||
- cd c:\tools\php | ||
- IF %PHP%==1 copy php.ini-production php.ini /Y | ||
- IF %PHP%==1 echo date.timezone="UTC" >> php.ini | ||
- IF %PHP%==1 echo extension_dir=ext >> php.ini | ||
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini | ||
- IF %PHP%==1 echo extension=php_mbstring.dll >> php.ini | ||
- IF %PHP%==1 echo extension=php_intl.dll >> php.ini | ||
- IF %PHP%==1 echo extension=php_fileinfo.dll >> php.ini | ||
- IF %PHP%==1 echo @php %%~dp0composer.phar %%* > composer.bat | ||
- appveyor-retry appveyor DownloadFile https://getcomposer.org/composer.phar | ||
- cd c:\projects\mb-similar-text | ||
- IF %dependencies%==lowest appveyor-retry composer update --prefer-lowest --no-progress --profile -n | ||
- IF %dependencies%==highest appveyor-retry composer update --no-progress --profile -n | ||
- composer show | ||
|
||
## Run the actual test | ||
test_script: | ||
- cd c:\projects\mb-similar-text | ||
- vendor/bin/phpunit -c phpunit.xml.dist |