-
Notifications
You must be signed in to change notification settings - Fork 12
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 #5 from LimeDeck/issue#4
Fixed issue with the Windows EOL
- Loading branch information
Showing
4 changed files
with
52 additions
and
6 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
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,45 @@ | ||
build: off | ||
platform: | ||
- x64 | ||
clone_folder: c:\projects\phpunit-detailed-printer | ||
environment: | ||
matrix: | ||
- php_version: 5.6 | ||
- php_version: 7.0 | ||
- php_version: 7.1 | ||
## 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 | ||
## Set up environment variables | ||
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 | ||
- SET ANSICON=121x90 (121x90) | ||
## Install PHP and composer, and run the appropriate composer command | ||
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_version | 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_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\phpunit-detailed-printer | ||
- appveyor-retry composer install --no-progress --profile | ||
- composer show | ||
|
||
## Run the actual test | ||
test_script: | ||
- cd c:\projects\phpunit-detailed-printer | ||
- vendor/bin/phpunit |
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