Skip to content

Commit

Permalink
Merge pull request #1 from antalaron/appveyor
Browse files Browse the repository at this point in the history
Appveyor
  • Loading branch information
antalaron authored Sep 20, 2017
2 parents 07234af + a3418a0 commit 95854e7
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE.md
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.
-->
12 changes: 12 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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.
-->
59 changes: 59 additions & 0 deletions appveyor.yml
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

0 comments on commit 95854e7

Please sign in to comment.