Skip to content

Commit

Permalink
Add AppVeyor CI (yiisoft#16123)
Browse files Browse the repository at this point in the history
  • Loading branch information
Slamdunk authored and samdark committed Apr 18, 2018
1 parent 1d33696 commit 4fcf97e
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
build: false
version: dev-{build}
shallow_clone: true
clone_folder: C:\projects\yii2

environment:
matrix:
- php_ver: 7.2.4

cache:
- '%APPDATA%\Composer'
- '%LOCALAPPDATA%\Composer'
- C:\tools\php -> .appveyor.yml
- C:\tools\composer.phar -> .appveyor.yml

init:
- SET PATH=C:\tools\php;%PATH%

install:
- ps: Set-Service wuauserv -StartupType Manual
- IF NOT EXIST C:\tools\php (choco install --yes --allow-empty-checksums php --version %php_ver% --params '/InstallDir:C:\tools\php')
- cd C:\tools\php
- copy php.ini-production php.ini
- echo date.timezone="UTC" >> php.ini
- echo memory_limit=512M >> php.ini
- echo extension_dir=ext >> php.ini
- echo extension=php_curl.dll >> php.ini
- echo extension=php_fileinfo.dll >> php.ini
- echo extension=php_gd2.dll >> php.ini
- echo extension=php_intl.dll >> php.ini
- echo extension=php_mbstring.dll >> php.ini
- echo extension=php_openssl.dll >> php.ini
- IF NOT EXIST C:\tools\composer.phar (cd C:\tools && appveyor DownloadFile https://getcomposer.org/download/1.4.1/composer.phar)

before_test:
- cd C:\projects\yii2
- php C:\tools\composer.phar update --no-interaction --no-progress --prefer-stable --no-ansi

test_script:
- cd C:\projects\yii2
- vendor\bin\phpunit --exclude-group mssql,mysql,pgsql,sqlite,db,oci,wincache,xcache,zenddata,cubrid
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
# Ignore some meta files when creating an archive of this repository
# We do not ignore any content, because this repo represents the
# `yiisoft/yii2-dev` package, which is expected to ship all tests and docs.
/.appveyor.yml export-ignore
/.github export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
Expand Down

0 comments on commit 4fcf97e

Please sign in to comment.